wiki.xw3.org

Welcome to the xw3 Wiki! Powered by hanez

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 [2024-10-05] hanezgit [2025-03-18] (current) hanez
Line 1: Line 1:
 ====== Git ====== ====== Git ======
 +
 +===== Add tag =====
 +
 +<code shell>git tag TAG</code>
 +
 +==== Commit a tag ====
 +
 +<code>git push origin TAG</code>
 +
 +==== Commit all tags ====
 +
 +<code>git push origin --tags</code>
 +
 +Source: [[https://stackoverflow.com/questions/18216991/create-a-tag-in-a-github-repository]]
  
 ===== Clone a specific tag ===== ===== Clone a specific tag =====
  
 <code bash>git clone --depth 1 --branch <tag_name> <repo_url></code> <code bash>git clone --depth 1 --branch <tag_name> <repo_url></code>
- 
  
 ===== Specify the private SSH-key to use when executing a Git command: ===== ===== Specify the private SSH-key to use when executing a Git command: =====
Line 80: Line 93:
  
 Source: [[https://stackoverflow.com/questions/5542910/how-do-i-commit-changes-in-a-git-submodule]] Source: [[https://stackoverflow.com/questions/5542910/how-do-i-commit-changes-in-a-git-submodule]]
 +
 +===== Remove sensitive files and their commits from Git history =====
 +
 +<code>git filter-branch --force --index-filter "git rm -r --cached --ignore-unmatch PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA" --prune-empty --tag-name-filter cat -- --all
 +git push --force --verbose --dry-run
 +git push --force</code>
 +
 +
 +Source: [[https://stackoverflow.com/questions/872565/remove-sensitive-files-and-their-commits-from-git-history]]
  
 ===== How to merge two or multiple git repositories into one ===== ===== How to merge two or multiple git repositories into one =====
Line 86: Line 108:
   * [[https://stackoverflow.com/questions/1425892/how-do-you-merge-two-git-repositories]]   * [[https://stackoverflow.com/questions/1425892/how-do-you-merge-two-git-repositories]]
   * [[https://github.com/apenwarr/git-subtree]]   * [[https://github.com/apenwarr/git-subtree]]
- 
git.1728097398.txt.gz · Last modified: 2024-10-05 by hanez