Last active
December 17, 2019 14:44
-
-
Save kngvamxx/60b304caad252134ee29af2d9b401353 to your computer and use it in GitHub Desktop.
Git Push
This file contains 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 characters
# setup and configure git | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt install git | |
sudo git config --global user.name "YourName" | |
sudo git config --global user.email [email protected] | |
git --version | |
# access folde by $ cd prjectfolder | |
sudo git init | |
sudo git add . | |
sudo git commit -m "first commit" | |
sudo git push -u origin master | |
sudo git pull | |
https://youtu.be/Ih_QYeS2LBQ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment