Giter Site home page Giter Site logo

codinghousetips-tricks's Introduction

Coding House Tips & Tricks

README with tips and tricks to improve and find more efficients ways of working with our environments.

Command Line Tips

I recommend using aliases to access your main folder faster and moving around CLI faster.

You can access aliases using:

vi ~/.files/.aliases

You can then add your alias using the following format:

alias NAME_OF_ALIAS="COMMAND_TO_RUN"

i.e.

alias cdhome="cd Documents/Main/"

To open Brackets using Command Line you can add the following alias:

alias brack="open -a 'Brackets'"

Then in Command line you can use brack to open any file

brack app.js

Here are a few aliases for listing files in a directory:

alias ll='ls -al'
alias la='ls -A'
alias l='ls -CF'

Here is a list aliases for various Git commands:

alias g='git'
alias ga='git add -A'
alias gb='git branch -a'
alias gc='git commit -v -m'
alias gca='git commit -a -v'
alias gco='git checkout'
alias gd='git diff'
alias gds='git diff --staged'
alias gdh='git diff HEAD'
alias gsh='git push'
alias gll='git pull'
alias gpr='git pull --rebase'
alias gst='git status -sb'
alias gap='git add -p'
alias grc='git rebase --continue'
alias gfa='git fetch --all'
alias gw='git branch -a --contains'
alias gld='git log --decorate --oneline'

codinghousetips-tricks's People

Contributors

soyzamudio avatar

Watchers

James Cloos avatar Tommy Janszen avatar Amah Ajavon avatar Michael J. Perez avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.