Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File will not sync after committing in GitHub Windows client?

Some of my files will not sync to my Github account after numerous attempts to commit and then sync. I don't get an error message, but the files never show up on my account after clicking on "sync".

Screenshots:

Github Remote Screen

Github Local Screen

like image 978
Ken Shoufer Avatar asked Aug 01 '13 21:08

Ken Shoufer


People also ask

How do I add files to GitHub Windows?

On your computer, move the file you'd like to upload to GitHub into the local directory that was created when you cloned the repository. Open TerminalTerminalGit Bash. Change the current working directory to your local repository. Stage the file for commit to your local repository.


1 Answers

The easiest way to debug that kind of behaviour is to open a shell directly from GitHub for Windows:

shell

You can then check the result of:

git status
git add -A 
git commit -m "new commit"
git push
like image 195
VonC Avatar answered Oct 28 '22 16:10

VonC