-
-
Save andyduke/7b1b3b064c84bac85871a452397c9980 to your computer and use it in GitHub Desktop.
Revisions
-
andyduke revised this gist
Apr 23, 2022 . 1 changed file with 4 additions and 5 deletions.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 @@ -2,19 +2,18 @@ Get started by creating a new file or uploading an existing file. We recommend e …or create a new repository on the command line ``` git init git add README.md git commit -m "first commit" git branch -M master git remote add origin https://github.com/<path_to_repo>.git git push -u origin master ``` …or push an existing repository from the command line ``` git remote add origin https://github.com/<path_to_repo>.git git branch -M master git push -u origin master ``` -
loretoparisi revised this gist
May 26, 2020 . 1 changed file with 0 additions and 2 deletions.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 @@ -7,8 +7,6 @@ git init git add README.md git commit -m "first commit" git remote add origin https://github.com/loretoparisi/myrepo.git git push -u origin master ``` -
loretoparisi revised this gist
May 26, 2020 . 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 @@ -8,12 +8,15 @@ git add README.md git commit -m "first commit" git remote add origin https://github.com/loretoparisi/myrepo.git git pull origin master --allow-unrelated-histories git commit -a -m "merge" git push -u origin master ``` …or push an existing repository from the command line ``` git remote add origin https://github.com/loretoparisi/myrepo.git git pull origin master --allow-unrelated-histories git commit -a -m "merge" git push -u origin master ``` -
loretoparisi revised this gist
May 26, 2020 . 1 changed file with 3 additions and 2 deletions.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 @@ -2,11 +2,12 @@ Get started by creating a new file or uploading an existing file. We recommend e …or create a new repository on the command line ``` echo "# myrepo" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/loretoparisi/myrepo.git git pull origin master --allow-unrelated-histories git push -u origin master ``` -
loretoparisi renamed this gist
May 4, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
loretoparisi revised this gist
May 4, 2020 . 1 changed file with 12 additions and 2 deletions.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,11 +1,21 @@ Get started by creating a new file or uploading an existing file. We recommend every repository include a `README`, `LICENSE`, and `.gitignore`. …or create a new repository on the command line ``` echo "# etllib" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/Musixmatchdev/etllib.git git push -u origin master ``` …or push an existing repository from the command line ``` git remote add origin https://github.com/Musixmatchdev/etllib.git git push -u origin master ``` …or import code from another repository You can initialize this repository with code from a Subversion, Mercurial, or TFS project. -
loretoparisi created this gist
May 4, 2020 .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,11 @@ …or create a new repository on the command line echo "# etllib" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/Musixmatchdev/etllib.git git push -u origin master …or push an existing repository from the command line git remote add origin https://github.com/Musixmatchdev/etllib.git git push -u origin master