Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion git_commands.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,15 @@ git push origin master
clear


this is some new changes
this is some new changes and additional commands to add.

Commands for branching and merging
git branch 'Branch name' (To create new branch)
git switch Branch name or git checkout Branch name (switch from branch to other branch)
git log (Latest commit)
git log --oneline (Arrange commit line by line)
git pull origin Branch name (To merge Branch into master)
git push origin dev (To push new branch to remote i.e github)
updated code in dev branch 31 aug 2025.
These are all commands for git and we test merge repeatedly at 9 a.m for the last and final merge.
Creating pull request from github.
3 changes: 2 additions & 1 deletion this_is_from_dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
this file is from dev
This file is from dev 2025 edited to commit changes to local.
Now the file commit changes from local to remote.