#command-line
Read more stories on Hashnode
Articles with this tag
Homebrew Formula can receive options via command-line arguments. Wanted to compile and install code from a private repo and Devs may use ssh or...
We can prefix the Git Alias with ! to make it a shell command instead of sub-command to git. git config --global alias.statuses \ '!for repo in $(find...
TIL that we can copy single file from another branch to current branch: git checkout <branch-containing-the-file> </path/to/file> In below screenshot...
TIL that its possible to push a specific Git Commit to Remote. git push origin <commit-sha>:<branch> Though, if there are any un-pushed commits...
TIL that we can join zoom meeting from command-line by opening the url with zoommtg protocol: open...
Today I Learned that alias command when used without any args prints all aliases set in the current shell. Usually I alias command to create a new...