Skip to content

Commit 1e24d4f

Browse files
authored
Merge pull request #96 from silx-kit/rename-to-main
Fixes following renaming master branch to main
2 parents 7805096 + d704279 commit 1e24d4f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

software_engineering/2_Git/2_git_training.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@
652652
"For example *fetch* and *merge* have default values for:\n",
653653
"\n",
654654
"* repository --> origin\n",
655-
"* branch --> master / main"
655+
"* branch --> main"
656656
]
657657
},
658658
{
@@ -677,17 +677,17 @@
677677
"# git remote add co-worker https://gitlab.esrf.fr/<co-worker>/pypolynom.git\n",
678678
"```\n",
679679
"\n",
680-
"2. merge those modifications on your master branch\n",
680+
"2. merge those modifications on your main branch\n",
681681
"\n",
682682
"```bash\n",
683-
"git checkout master\n",
683+
"git checkout main\n",
684684
"git fetch upstream <branch>\n",
685685
"git merge upstream/main\n",
686686
"```\n",
687687
"or\n",
688688
"\n",
689689
"```bash\n",
690-
"git checkout master\n",
690+
"git checkout main\n",
691691
"git pull upstream/main\n",
692692
"```\n",
693693
"\n",

0 commit comments

Comments
 (0)