git
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
git [2018/11/12 15:50] – created odefta | git [2025/01/02 20:22] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
git reset HEAD~1 | git reset HEAD~1 | ||
+ | |||
+ | ====== Rename default branch master ====== | ||
+ | |||
+ | git config --global init.defaultBranch main | ||
+ | | ||
+ | This was done for ethical reasons. \\ | ||
+ | If the default ' | ||
+ | < | ||
+ | hint: Using ' | ||
+ | hint: is subject to change. To configure the initial branch name to use in all | ||
+ | hint: of your new repositories, | ||
+ | hint: | ||
+ | hint: git config --global init.defaultBranch < | ||
+ | hint: | ||
+ | hint: Names commonly chosen instead of ' | ||
+ | hint: ' | ||
+ | hint: | ||
+ | hint: git branch -m < | ||
+ | </ | ||
+ | |||
+ | ====== Disable https ssl verification ====== | ||
+ | |||
+ | git config --global http.sslVerify false | ||
+ | |||
+ | ====== Sync fork with original repo ====== | ||
+ | < | ||
+ | git remote add upstream https:// | ||
+ | git stash | ||
+ | git checkout master | ||
+ | git fetch upstream | ||
+ | git merge upstream/ | ||
+ | git stash pop | ||
+ | </ | ||
+ | |||
+ | ====== Merge changes form master branch in current branch ====== | ||
+ | |||
+ | < | ||
+ | git.exe merge remotes/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
git.1542030620.txt.gz · Last modified: 2023/07/04 19:36 (external edit)