Last active
August 29, 2015 14:04
-
-
Save luonghuycuong/0cbe3f14a27fabf53fc5 to your computer and use it in GitHub Desktop.
Revisions
-
luonghuycuong revised this gist
Jul 24, 2015 . No changes.There are no files selected for viewing
-
luonghuycuong renamed this gist
Jul 24, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
luonghuycuong revised this gist
Aug 1, 2014 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ Dropbox vs Git ```git $ cd ~/Dropbox/Git $ git init --bare mytestrepo.git @@ -9,4 +11,5 @@ $ git init $ git remote add origin ~/Dropbox/Git/mytestrepo.git $ git push -u origin master $ git clone ~/Dropbox/Git/mytestrepo.git testrepo2 ``` -
luonghuycuong created this gist
Aug 1, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Dropbox vs Git $ cd ~/Dropbox/Git $ git init --bare mytestrepo.git $ cd ~ $ mkdir testrepo $ cd testrepo $ git init $ git remote add origin ~/Dropbox/Git/mytestrepo.git $ git push -u origin master $ git clone ~/Dropbox/Git/mytestrepo.git testrepo2