Created
November 12, 2019 17:34
-
-
Save ibrahim-kardi/08bd1d3f5fd82ee3aa8a4ac5e79d4a00 to your computer and use it in GitHub Desktop.
necessary git comand
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
# to initialize | |
git init | |
#Add the files in your new local repository. This stages them for the first commit | |
git add . | |
#Commit the files that you’ve staged in your local repository | |
git commit -m "initial commit" | |
#add the URL for the remote repository where your local repository will be pushed | |
git remote add origin remote repository URL | |
git remote -v | |
# Push the changes in your local repository to GitHub | |
git push -f origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment