User Tools

Site Tools


git

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
git [2023/07/04 13:03] odeftagit [2023/10/25 06:02] odefta
Line 21: Line 21:
 hint:   git branch -m <name> hint:   git branch -m <name>
 </code> </code>
 +
 +====== Disable https ssl verification ======
 +
 +  git config --global http.sslVerify false
 +
 +====== Sync fork with original repo ======
 +
 +git remote add upstream https://gitlab../project.git
 +git stash
 +git checkout master
 +git fetch upstream
 +git rebase upstream/master
 +git stash pop
 +
 +
 +
 +
  
  
  
git.txt · Last modified: 2023/11/28 23:35 by odefta