Adding some Git instructions
This adds some git instructions. I'm not *quite* sure it's correct.
This commit is contained in:
parent
e4519dbd5f
commit
58483d1819
|
@ -0,0 +1,18 @@
|
|||
# Git Commands
|
||||
|
||||
I'm going to create a document first about setting up a respository
|
||||
remotely, and then syncing with a local "repository".
|
||||
|
||||
## Git Remote Sync
|
||||
|
||||
Remote is setup
|
||||
|
||||
```
|
||||
$ git init
|
||||
$ git remote add <remote-name> <remote-url>
|
||||
$ git pull <remote-name> <branch>
|
||||
$ git push --set-upstream <remote-name> <branch>
|
||||
```
|
||||
|
||||
That seems to handle it.
|
||||
|
Loading…
Reference in New Issue