git commands to push code code example
Example 1: git push command line
1. git init
2. git add .
3. git status
4. git commit -m 'your message'
5. git remote add origin 'your_url_name'
6. git push -u origin master
Example 2: git commands
…or create a new repository on the command line
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/metinkaya1511/FinraDeck.git
(GitHub’daki adres)
git push -u origin master
…push an existing repository from the command line
git remote add origin https://github.com/metinkaya1511/FinraDeck.git
(github adresi)
git push -u origin master
CREATE BRANCH
- git branch develop ==> it creates new branch named 'develop' but still
keep being on master branch
- git checkout develop ==> it will change your branch to the develop branch
git checkout -b develop ==> it creates also a branch named develop and
switches to it automatically
DELETE
git branch -d <branch_name> deletes the branch. If we have unmerged changes,
this command gives a warning and does not delete.
git branch -D <branch_name> deletes the branch even if it has unmerged changes.
Gives no warning.
SWITCH to Branch
git checkout develop checks out the branch, switches to the branch.
git checkout -b <branch_name> creates a new branch and switches to it.
git merge <branch_name> this command takes changes from the given branch,
and merges with the current branches we are on.
Example 3: git push repo
git remote add origin https://github.com/tqisjim/google-oauth.git
git push -u origin master
Example 4: git push functions code
echo "# CrossPlatform_GGM" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/richabatra/CrossPlatform_GGM.git
git push -u origin main
Example 5: git push command
If you want to upload your code first check status
1. git status
2. git add youFilePath
3. git add .
4. git commit -m "anyMessageYouWantToWrite"
5. git push
Example 6: git commands
git push origin <branchname>