Configuration custom command alias under Linux/mac

Source: Internet
Author: User

Linux/mac the custom command alias, and save the alias to make it permanent (reboot will not expire)

The command to develop each commit code is a long list of parameters that you do not want to remember, so you can use the alias command to solve the problem:
alias aCommandAlias=‘aCommand 一堆参数什么的‘
Like what
alias gpush=‘git push origin HEAD:refs/for/master‘

So in the terminal, only need to enter the Gpush is OK.

But in this case, it will expire after a reboot, the solution is to edit the ~/.BASHRC file, adding an alias command per line. For example:
alias cdhome=‘cd ~‘
alias cdroot=‘cd /‘
alias gpull=‘git pull‘
alias gci=‘git commit -a‘
alias gpush=‘git push origin HEAD:refs/for/master‘
alias gst=‘git status‘

After saving the file, run:
source ~/.bashrc(otherwise not effective)
You can do it.
If not, the description does not have a ~/.bash_profile file, or the. bashrc file is not executed in the file.
(. bash_profile files are files that are automatically executed when the user logs on to the terminal, which is typically called in this file. BASHRC)
If so, the file needs to be opened (created first if not):
~/.bash_profile
Add a line inside:
source ~/.bashrc
It's OK.
I tested OK under the Mac system.

Configuration custom command alias under Linux/mac

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.