Auxiliary Memory
  • Auxiliary Memory
  • Recent Changes
  • Disclaimer
  • general
    • Homelab
      • Planning
      • Configuring RPi
      • Dockerize Unifi Controller
      • Moving Unifi Controller to Bare Metal RPi
    • Lifehack
      • Coding on iPad
      • Faster internet with Cloudflare WARP
  • lifelog
    • Links
    • Movies
    • Books
      • Reading Queue
    • Public Memos
      • 2020 Memo
    • Yearly Records
      • Records of 2020
      • Records of 2019
  • books
    • The Rust Programming Language
    • Lambda Calculus
    • SICP
    • Introduction To Algorithms
      • 1.1. 알고리즘의 역할
      • 1.2. 시작하기
    • Linux System Programming 2/E
      • 1. 핵심 개념 소개
  • Programming
    • Git
    • When to refactoring?
    • Microservices
    • Functional Programming
      • ADT
      • Functor and Monads
    • OS
      • CPU Modes
    • Debugging
      • objdump
    • DevOps
      • How our infrastructure organized
      • Optimize Dockerfile
    • Spring Framework
    • Web
      • OAuth
        • Sign in with Apple
    • SQL
      • Prepared Statement
    • Programming Languages
      • TypeScript
      • Python
        • GIL
      • Rust
      • F#
        • Dos & Don'ts
      • Go
      • JVM
        • JVM memory structure
        • JVM GC
        • Kotilin
        • Java
          • Why main method should be static
  • My Environment
    • My Macbook
    • My Keyboards
    • My PyCharm
    • My CLI
      • iTerm2
      • Dotfiles
        • Refactoring .zshrc
      • Useful Commands
Powered by GitBook
On this page
  • Tips
  • Links

Was this helpful?

  1. Programming

Git

Previous1. 핵심 개념 소개NextWhen to refactoring?

Last updated 5 years ago

Was this helpful?

Tips

  • git status 필수 옵션

    • git status -s -uall

    • -uall: untracked 파일들이 디렉토리 아래에 있을 경우에 디렉토리만 보여주는것이 아닌 모든 파일을 다 보여줌

    • -s: short 포맷으로 간략하게 보여줌

  • git pull 필수 옵션:

    git config --global pull.rebase true
    git config --global rebase.autoStash true

Links

    • 깃은 이 책 한권으로 끝난다.

    • preview 도구를 bat으로 교체하는 등 조금 변경해 사용중.

git-status Documentation - Git
자동으로 리베이스 & 스태쉬
Pro GIt
편리한 git alias 설정하기