-
Notifications
You must be signed in to change notification settings - Fork 176
References, how tos and tutorials to git
Christian Kral edited this page Nov 25, 2019
·
10 revisions
- Free Git Pro book https://git-scm.com/book/en/v2
- Guides on GitHub https://guides.github.com/
- Interactive tutorial https://learngitbranching.js.org/
- Sync a fork with the original (upstream) ModelicaStandardLibrary https://gist.github.com/Chaser324/ce0505fbed06b947d962
- Create a local branch, switch to the branch, apply changes. At your fork (assuming that you have the GitHub username
<user>) push the branch to the fork only. Two possible options are:- Direct application
git push --repo=https://github.com/<user>/ModelicaStandardLibrary.git - Apply the abbreviation
mslto your local fork:git remote add msl https://github.com/<user>/ModelicaStandardLibrary.gitthen push using the abbreviationgit push -u msl
- Direct application
- Create a permanent link to a code snippet