Created
June 3, 2009 08:43
-
-
Save jacobat/122889 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
| % git init | |
| Initialized empty Git repository in /Users/jacob/code/reposB/.git/ | |
| % touch fileB1 | |
| % mkdir dirB1 | |
| % touch dirB1/fileB2 | |
| % touch dirB1/fileB3 | |
| % git add . | |
| % git ci -m "Setup my own project" | |
| [master (root-commit) 0069e08] Setup my own project | |
| 0 files changed, 0 insertions(+), 0 deletions(-) | |
| create mode 100644 dirB1/fileB2 | |
| create mode 100644 dirB1/fileB3 | |
| create mode 100644 fileB1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment