User Tools

Site Tools


todo-git
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
Next revision
todo-git [2014/06/08 23:11] dblume
Line 1: Line 1:
 +====== git ======
  
 +Make the clone at the remote repository.
 +
 +<code>
 +git clone git@github.com:dblume/get-shit-done
 +</code>
 +
 +<code>
 +git remote add upstream git://github.com/icambridge/get-shit-done
 +</code>
 +
 +Enter a comment for the commit.  See section 2.7.2 [[http://cworth.org/hgbook-git/tour/|here]].
 +<code>
 +git commit -a
 +</code>
 +
 +Double checking the alias names...
 +
 +<code>
 +$ 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)
 +</code>
 +
 +The push that worked from within the local directory:
 +
 +<code>
 +git push origin
 +</code>
 +
 +===== Make a local clone of an existing remote project =====
 +
 +From the parent directory:
 +
 +<code>
 +git clone https://github.com/realpython/interview-questions.git python-interview
 +cd python-interview
 +</code>
 +
 +===== When it's time to commit =====
 +
 +Check which files are staged for commit with ''git status'' Then, when you're ready to commit locally,
 +
 +<code>
 +git commit -a -m "Some useful comment"
 +</code>
 +
 +When you're ready to push a local commit to a remote one...
 +
 +<code>
 +git push https://github.com/dblume/netflix-dvd-feed
 +</code>
 +
 +===== Creating a new remote repository from an existing local one =====
 +
 +I created hexbright-factory at [[https://github.com/new]].  Then, to create a new repository on the command line at the local computer:
 +
 +<code>
 +touch README.md
 +git init
 +git add README.md
 +git commit -m "first commit"
 +git remote add origin https://github.com/dblume/hexbright-factory.git
 +git push -u origin master
 +</code>
 +
 +===== Creating a new remote repository from an existing local one =====
 +
 +I created wine-tasting at [[https://github.com/new]].  Then, to create a new repository on the command line at the local computer:
 +
 +<code>
 +~$ mkdir wine-tasting
 +~$ cd wine-tasting/
 +wine-tasting$ vim README.md
 +wine-tasting$ vim LICENSE.txt
 +wine-tasting$ git init
 +wine-tasting$ git add README.md
 +wine-tasting$ git add LICENSE.txt
 +wine-tasting$ git add test.py
 +wine-tasting$ git add wine_allocator.py
 +wine-tasting$ git commit -m "first commit"
 +wine-tasting$ git remote add origin https://github.com/dblume/wine-tasting.git
 +wine-tasting$ git push -u origin master
 +</code>