diff options
author | Robby Workman <rworkman@slackware.com> | 2010-01-11 23:43:46 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackware.com> | 2010-01-11 23:43:46 -0600 |
commit | 43d9ae2c10cbd3c3bbff75bba7e51efd653758cf (patch) | |
tree | af674ebe24efeb67c20c204a3612d8cfa6fd4553 | |
parent | 5bfb10fbcfb4aaaf9a3f767a036f4e0900e3e116 (diff) | |
download | slackbook-43d9ae2c10cbd3c3bbff75bba7e51efd653758cf.tar.xz |
Added note about specifying where to push in .git/config
-rw-r--r-- | GIT_TUTU | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -31,7 +31,15 @@ This will prompt you for a commit message. Yes, I'm being picky about should further explain the changes (if such explanation is needed). -That's it - you're done. +Now push your changes to the remote repo: + git push + +You will probably need to add this to .git/config file inside the cloned repo: + + [branch "master"] + remote = origin + merge = refs/heads/master + If you add a new file to the repo for whatever reason, then be sure to add it to git's version control: |