Deprecated: Creation of dynamic property wpdb::$categories is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/wp-db.php on line 760

Deprecated: Creation of dynamic property wpdb::$post2cat is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/wp-db.php on line 760

Deprecated: Creation of dynamic property wpdb::$link2cat is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/wp-db.php on line 760

Deprecated: Creation of dynamic property POMO_FileReader::$is_overloaded is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 26

Deprecated: Creation of dynamic property POMO_FileReader::$_pos is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 29

Deprecated: Creation of dynamic property POMO_FileReader::$_f is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 160

Deprecated: Creation of dynamic property MO::$_gettext_select_plural_form is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/translations.php on line 292

Deprecated: Creation of dynamic property POMO_FileReader::$is_overloaded is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 26

Deprecated: Creation of dynamic property POMO_FileReader::$_pos is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 29

Deprecated: Creation of dynamic property POMO_FileReader::$_f is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/streams.php on line 160

Deprecated: Creation of dynamic property MO::$_gettext_select_plural_form is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/pomo/translations.php on line 292

Deprecated: Creation of dynamic property WP_Block_Type::$skip_inner_blocks is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/class-wp-block-type.php on line 391

Deprecated: Creation of dynamic property WP_Block_Type::$skip_inner_blocks is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/class-wp-block-type.php on line 391

Deprecated: Creation of dynamic property WP_Term::$object_id is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/class-wp-term-query.php on line 1118

Deprecated: Creation of dynamic property WP_Term::$object_id is deprecated in /home3/achieve/public_html/knowledgebase/wp-includes/class-wp-term-query.php on line 1118

Warning: Cannot modify header information - headers already sent by (output started at /home3/achieve/public_html/knowledgebase/wp-includes/wp-db.php:760) in /home3/achieve/public_html/knowledgebase/wp-includes/feed-rss2.php on line 8
Shortcuts – Knowledge http://knowledge.achieveee.com Tue, 18 Apr 2017 15:04:11 +0000 en-US hourly 1 https://wordpress.org/?v=6.0.7 http://knowledge.achieveee.com/wp-content/uploads/2016/05/cropped-favicon-32x32.png Shortcuts – Knowledge http://knowledge.achieveee.com 32 32 Git shortcuts for Linux based systems http://knowledge.achieveee.com/knowledge_base/git-shortcuts-for-linux-based-systems/ http://knowledge.achieveee.com/knowledge_base/git-shortcuts-for-linux-based-systems/#respond Tue, 18 Apr 2017 15:04:11 +0000 http://knowledge.achieveee.com/?post_type=knowledge_base&p=2508 Put the below code at the end of your ~/.bashrc file:

alias gs='git status'
alias ga='git add -A'
alias gc='git commit -a -m $1'
alias gp='git push origin master'
alias gpl='git pull origin master'

After saving the file, restart the command prompt. Type the alias in the command prompt to get the results:

  • Git Status:
    gs
  • Git Add:
    ga
  • Git commit:
    gc "your message"
  • Git Push:
    gp
  • Git Pull:
    gpl

*Note:
$1, $2, $3, etc… are command line inputs which are passed to alias.
Same way you can also use this feature in Git Push & Git Pull to treat command line inputs as sources and branches

]]>
http://knowledge.achieveee.com/knowledge_base/git-shortcuts-for-linux-based-systems/feed/ 0