|
1 | 1 | # Git
|
2 | 2 |
|
| 3 | +- [Git - Viewing the Commit History](https://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History) |
3 | 4 | - [Git - git-status Documentation](https://git-scm.com/docs/git-status)
|
4 | 5 | - [Git - git-remote Documentation](https://git-scm.com/docs/git-remote)
|
5 | 6 | - [Git - git-push Documentation](https://git-scm.com/docs/git-push)
|
6 | 7 | - [Git - git-rev-parse Documentation](https://git-scm.com/docs/git-rev-parse)
|
7 | 8 | - [Git - git-merge-base Documentation](https://git-scm.com/docs/git-merge-base)
|
| 9 | +- [Git - git-filter-branch Documentation](https://git-scm.com/docs/git-filter-branch) |
8 | 10 |
|
9 | 11 | - [version control - git and empty folders - Stack Overflow](https://stackoverflow.com/questions/1767165/git-and-empty-folders)
|
10 | 12 | - [What does the term "porcelain" mean in Git? - Stack Overflow](https://stackoverflow.com/questions/6976473/what-does-the-term-porcelain-mean-in-git)
|
|
19 | 21 | - [What does git rev-parse do? - Stack Overflow](https://stackoverflow.com/questions/15798862/what-does-git-rev-parse-do)
|
20 | 22 | - [Make an existing Git branch track a remote branch? - Stack Overflow](https://stackoverflow.com/questions/520650/make-an-existing-git-branch-track-a-remote-branch)
|
21 | 23 | - [git branch - Git: How do I list only local branches? - Stack Overflow](https://stackoverflow.com/questions/12370714/git-how-do-i-list-only-local-branches)
|
| 24 | +- [Git: want to iterate through all commits on branch, and list files in each commit - Stack Overflow](https://stackoverflow.com/questions/5953767/git-want-to-iterate-through-all-commits-on-branch-and-list-files-in-each-commi) |
| 25 | +- [Git: How to find a deleted file in the project commit history? - Stack Overflow](https://stackoverflow.com/questions/7203515/git-how-to-find-a-deleted-file-in-the-project-commit-history) |
| 26 | +- [git - How to list all the files in a commit? - Stack Overflow](https://stackoverflow.com/questions/424071/how-to-list-all-the-files-in-a-commit) |
| 27 | +- [How to Batch Update Git Commit Messages](https://davidwalsh.name/update-git-commit-messages) |
| 28 | +- [Rewriting Git Commit Messages](http://www.burtonini.com/blog/2018/03/06/rewriting-git-commit-messages/) |
| 29 | +- [Edit an old commit message with git filter-branch - Stack Overflow](https://stackoverflow.com/questions/43603080/edit-an-old-commit-message-with-git-filter-branch) |
| 30 | +- [git commit - Purging file from Git repo failed, unable to create new backup - Stack Overflow](https://stackoverflow.com/questions/6403601/purging-file-from-git-repo-failed-unable-to-create-new-backup) |
22 | 31 |
|
23 | 32 | # bash
|
24 | 33 |
|
|
36 | 45 | - [Bash Shell Find Out If a Variable Is Empty Or Not - nixCraft](https://www.cyberciti.biz/faq/unix-linux-bash-script-check-if-variable-is-empty/)
|
37 | 46 | - [bash - Test if a command outputs an empty string - Stack Overflow](https://stackoverflow.com/questions/12137431/test-if-a-command-outputs-an-empty-string)
|
38 | 47 | - [linux - How to compare strings in Bash - Stack Overflow](https://stackoverflow.com/questions/2237080/how-to-compare-strings-in-bash)
|
| 48 | +- [awk - print columns with text and spaces | Unix Linux Forums | Shell Programming and Scripting](https://www.unix.com/shell-programming-and-scripting/245398-awk-print-columns-text-spaces.html) |
| 49 | +- [bash case statements evaluate to strings - Stack Overflow](https://stackoverflow.com/questions/2283640/bash-case-statements-evaluate-to-strings) |
| 50 | +- [Introduction to Bash arrays | Opensource.com](https://opensource.com/article/18/5/you-dont-know-bash-intro-bash-arrays) |
| 51 | +- [shell - How to concatenate string variables in Bash - Stack Overflow](https://stackoverflow.com/questions/4181703/how-to-concatenate-string-variables-in-bash) |
| 52 | +- [Bash array usage cheatsheet.](https://gist.github.com/magnetikonline/0ca47c893de6a380c87e4bdad6ae5cf7) |
| 53 | +- [bash - Create array in loop from number of arguments - Stack Overflow](https://stackoverflow.com/questions/15420790/create-array-in-loop-from-number-of-arguments) |
| 54 | +- [Is there a way of reading the last element of an array with bash? - Unix & Linux Stack Exchange](https://unix.stackexchange.com/questions/198787/is-there-a-way-of-reading-the-last-element-of-an-array-with-bash) |
| 55 | +- [The weird, wondrous world of Bash arrays – Robert Aboukhalil – Medium](https://medium.com/@robaboukhalil/the-weird-wondrous-world-of-bash-arrays-a86e5adf2c69) |
| 56 | +- [bash - readarray (or pipe) issue - Unix & Linux Stack Exchange](https://unix.stackexchange.com/questions/136206/readarray-or-pipe-issue) |
| 57 | +- [Reading output of a command into an array in Bash - Stack Overflow](https://stackoverflow.com/questions/11426529/reading-output-of-a-command-into-an-array-in-bash/32931403) |
| 58 | +- [How do you process the output of a command in the shell line-by-line? - Stack Overflow](https://stackoverflow.com/questions/3113005/how-do-you-process-the-output-of-a-command-in-the-shell-line-by-line) |
| 59 | +- [bash: convert '\n' delimited strings into array - Stack Overflow](https://stackoverflow.com/questions/24628076/bash-convert-n-delimited-strings-into-array) |
| 60 | +- [bash - Are <=,>=, <,>, ==, !=, &&, and || used for arithmetic expressions or conditional expressions? - Unix & Linux Stack Exchange](https://unix.stackexchange.com/questions/270591/are-and-used-for-arithmetic-expressions-or-conditiona) |
| 61 | +- [A bash function that takes argument like other languages? - Unix & Linux Stack Exchange](https://unix.stackexchange.com/questions/122632/a-bash-function-that-takes-argument-like-other-languages) |
| 62 | +- [Checking for empty string in Bash « timmurphy.org](https://timmurphy.org/2010/05/19/checking-for-empty-string-in-bash/) |
| 63 | +- [How to use arithmetic in an if statement for Bash - Stack Overflow](https://stackoverflow.com/questions/43443159/how-to-use-arithmetic-in-an-if-statement-for-bash) |
0 commit comments