Created
August 20, 2010 23:38
-
-
Save jgeewax/541449 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(rc-1.0)jj@im-jj:~/demo$ git checkout master | |
Switched to branch 'master' | |
(master)jj@im-jj:~/demo$ touch myothernewfile.txt | |
(master)jj@im-jj:~/demo$ git add myothernewfile.txt | |
(master)jj@im-jj:~/demo$ git commit -m "Added another new file" | |
[master 617f46d] Added another new file | |
0 files changed, 0 insertions(+), 0 deletions(-) | |
create mode 100644 myothernewfile.txt | |
(master)jj@im-jj:~/demo$ touch onemorefile.txt | |
(master)jj@im-jj:~/demo$ git add onemorefile.txt | |
(master)jj@im-jj:~/demo$ git commit -m "Added one more new file" | |
[master 23290ed] Added one more new file | |
0 files changed, 0 insertions(+), 0 deletions(-) | |
create mode 100644 onemorefile.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment