User Tools

Site Tools


todo-git

This is an old revision of the document!


git

Make the clone at the remote repository.

git clone git@github.com:dblume/get-shit-done
git remote add upstream git://github.com/icambridge/get-shit-done

Enter a comment for the commit. See section 2.7.2 here.

git commit -a

Double checking the alias names…

$ git remote -v
origin  git@github.com:dblume/get-shit-done (fetch)
origin  git@github.com:dblume/get-shit-done (push)
upstream        git://github.com/icambridge/get-shit-done (fetch)
upstream        git://github.com/icambridge/get-shit-done (push)

The push that worked from within the local directory:

git push origin

When it's time to commit

Check which files are staged for commit with git status. Then, when you're ready to commit locally,

git commit -a -m "Some useful comment"

When you're ready to push a local commit to a remote one…

git push https://github.com/dblume/netflix-dvd-feed
todo-git.1350634143.txt.gz · Last modified: 2023/04/12 20:44 (external edit)