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 13:03] odeftagit [2025/06/22 00:27] (current) odefta
Line 22: Line 22:
 </code> </code>
  
 +====== Disable https ssl verification ======
  
 +  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>
 +
 +====== Commit with another date ======
 +
 +<code>
 +GIT_AUTHOR_DATE="2025-06-23 08:50:05" GIT_COMMITTER_DATE="2025-06-23 08:50:05" git commit -m "Update configuration and dependencies"
 +</code>
 +
 +====== Get all log details (including committer date) ======
 +
 +<code>
 +git log --pretty=fuller
 +</code>
git.1688465038.txt.gz · Last modified: 2023/07/04 19:36 (external edit)