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
Last revisionBoth sides next revision
git [2023/07/04 14:29] odeftagit [2023/11/03 10:26] – [Merge changes form master branch in current branch] odefta
Line 24: Line 24:
 ====== Disable https ssl verification ====== ====== Disable https ssl verification ======
  
-  git config --global http.sslVerify true+  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 rebase upstream/master 
 +git stash pop 
 +</code> 
 + 
 +====== Merge changes form master branch in current branch ====== 
 + 
 +<code> 
 +git.exe merge remotes/origin/master 
 +</code> 
 + 
 + 
 + 
 + 
  
  
  
git.txt · Last modified: 2023/11/28 23:35 by odefta