@@ -54,7 +54,7 @@ codebase to enable this functionality. See
5454## Git Workflow
5555
5656We follow a Git workflow similar to
57- [ Kubernetes] ( https://github.com/kubernetes/community/blob/master /contributors/guide/git_workflow.png ) .
57+ [ Kubernetes] ( https://github.com/kubernetes/community/blob/main /contributors/guide/git_workflow.png ) .
5858If you are not familiar with it, please review the following instructions.
5959
6060### Fork the Repository
@@ -85,16 +85,16 @@ git remote -v
8585
8686### Create a Branch
8787
88- Update your local ` master ` branch:
88+ Update your local ` main ` branch:
8989
9090``` bash
9191cd $working_dir /mun
9292git fetch upstream
93- git checkout master
94- git rebase upstream/master
93+ git checkout main
94+ git rebase upstream/main
9595```
9696
97- Branch from ` master ` :
97+ Branch from ` main ` :
9898
9999``` bash
100100git checkout -b feature/my-precious
@@ -107,7 +107,7 @@ Now you are ready to edit code on the `feature/my-precious` branch.
107107``` bash
108108# While on your feature/my-precious branch
109109git fetch upstream
110- git rebase upstream/master
110+ git rebase upstream/main
111111```
112112
113113Please don't use ` git pull ` instead of the above ` fetch ` / ` rebase ` . By default,
@@ -171,7 +171,7 @@ Refs #133
171171```
172172
173173For more examples, check [ recent commit
174- message] ( https://github.com/mun-lang/mun/commits/master ) .
174+ message] ( https://github.com/mun-lang/mun/commits/main ) .
175175
176176### Push Changes
177177
@@ -188,7 +188,7 @@ push](https://blog.developer.atlassian.com/force-with-lease/) changes.
188188### Create a Pull Request
189189
190190Please submit a [ GitHub Pull Request to
191- mun-lang/mun] ( https://github.com/mun-lang/mun/pull/new/master ) with a clear list
191+ mun-lang/mun] ( https://github.com/mun-lang/mun/pull/new/main ) with a clear list
192192of changes (read more about [ pull
193193requests] ( http://help.github.com/pull-requests/ ) ). When you submit a pull request,
194194make sure to include tests that validate the implemented feature or bugfix
0 commit comments