Skip to content

Commit 28194af

Browse files
committed
feat(tools): expand git branch workflow
1 parent e6c2280 commit 28194af

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tools/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,15 @@ section.content>h2{Title}+p{Some text}+ul>li*3
111111
`git checkout main``git merge feature-xyz`
112112
(Bring feature branch changes into the main project)
113113

114+
6. See All Commits
115+
`git log`
116+
117+
7. Push main branch onto remote
118+
`git push origin main`
119+
120+
8. Delete development branch
121+
`git branch -d feature-xyz` and delete from remote repo `git push origin --delete feature xyz`
122+
114123
### Branches
115124
Branches in Git allow your repository to hold multiple alternate reality versions of your files at the same time.
116125

0 commit comments

Comments
 (0)