You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C:\GitHub\github-for-developers-sept-2015 [master +0 ~2 -0]> git status
# On branch master# Your branch is behind 'origin/master' by 27 commits, and can be fast-forwarded.# (use "git pull" to update your local branch)## Changes not staged for commit:# (use "git add <file>..." to update what will be committed)# (use "git checkout -- <file>..." to discard changes in working directory)## modified: README.md# modified: another file#
no changes added to commit (use "git add" and/or "git commit -a")
C:\GitHub\github-for-developers-sept-2015 [master +0 ~2 -0]> git add README.md
C:\GitHub\github-for-developers-sept-2015 [master +0 ~2 -0]> git add '.\Anotherfile'
C:\GitHub\github-for-developers-sept-2015 [master +0 ~2 -0]> git status
# On branch master# Your branch is behind 'origin/master' by 27 commits, and can be fast-forwarded.# (use "git pull" to update your local branch)## Changes not staged for commit:# (use "git add <file>..." to update what will be committed)# (use "git checkout -- <file>..." to discard changes in working directory)## modified: README.md# modified: another file#
no changes added to commit (use "git add" and/or "git commit -a")
C:\GitHub\github-for-developers-sept-2015 [master +0 ~2 -0]>
The text was updated successfully, but these errors were encountered:
@1walterh you don't need to add a file that is tracked by git. It has already been added. The git add command won't do anything. if you touch a new file... you will have to add that.
The text was updated successfully, but these errors were encountered: