File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,18 @@ use proper source control etiquette:
7373 git checkout --track -b msporny origin/msporny
7474
75752. Unless you know what you are doing, always ask before merging your
76- branch into master. If you don't know how to do git merges, ask somebody
77- else to do the merge for you.
78-
79-
76+ branch into master. If you're afraid of messing something up, ask somebody
77+ else to do the merge for you. You can perform a merge yourself by doing
78+ the following:
79+
80+ git checkout master
81+ git pull
82+ git checkout YOUR_GITHUB_USERNAME
83+ git merge master
84+
85+ 3. Be fairly verbose with your check-in messages as other people will be
86+ reading them to understand the gist of your changes. Your comments may also
87+ eventually be merged into the master branch. Checkin messages like
88+ "Fixed typo." are awful because they require the person that is viewing
89+ the log to go into the source changes to see what you fixed. Comments
90+ like "Fixed a typo in the <object> element to address bug# 1234" are better.
You can’t perform that action at this time.
0 commit comments