Skip to content

Commit 3d559a0

Browse files
committed
Add merge branches terminal output
1 parent ae281e4 commit 3d559a0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

merge_branches

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
$ git checkout -b bug-fix-typo
2+
Switched to a new branch 'bug-fix-typo'
3+
4+
$ git add README.md
5+
$ git commit -m "Fix typo in README"
6+
1 file changed, 1 insertion(+), 1 deletion(-)
7+
8+
$ git checkout main
9+
Switched to branch 'main'
10+
Your branch is up to date with 'origin/main'.
11+
12+
$ git merge bug-fix-typo
13+
Updating e095add..ae281e4
14+
Fast-forward
15+
README.md | 2 +-
16+
1 file changed, 1 insertion(+), 1 deletion(-)

0 commit comments

Comments
 (0)