There was an error while loading. Please reload this page.
1 parent e6c2280 commit 28194afCopy full SHA for 28194af
tools/README.md
@@ -111,6 +111,15 @@ section.content>h2{Title}+p{Some text}+ul>li*3
111
`git checkout main` → `git merge feature-xyz`
112
(Bring feature branch changes into the main project)
113
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
123
### Branches
124
Branches in Git allow your repository to hold multiple alternate reality versions of your files at the same time.
125
0 commit comments