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
git [2023/07/04 14:30] – [Disable https ssl verification] odeftagit [2023/11/28 23:35] (current) – [Sync fork with original repo] odefta
Line 25: Line 25:
  
   git config --global http.sslVerify false   git config --global http.sslVerify false
 +
 +====== Sync fork with original repo ======
 +<code>
 +git remote add upstream https://gitlab../project.git
 +git stash
 +git checkout master
 +git fetch upstream
 +git merge upstream/master
 +git stash pop
 +</code>
 +
 +====== Merge changes form master branch in current branch ======
 +
 +<code>
 +git.exe merge remotes/origin/master
 +</code>
 +
 +
 +
 +
 +
  
  
  
git.1688470206.txt.gz · Last modified: 2023/07/04 19:36 (external edit)