Original Source: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token Creating a personal access token - GitHub Docs Notes: If you use GitHub CLI to authenticate to GitHub on the command line, you can skip generating a personal access token and authenticate via the web browser instead. For more information about authenticating with GitHu..
Original Source: https://dev.classmethod.jp/articles/git-bash-commands Git Bash Commands | DevelopersIO WHY GIT? In today’s scenario of real world problem solving mechanism Git has been so handy in continuous proje … dev.classmethod.jp BASIC STUFFS cd "[path]" : 해당 디렉토리로 이동 mkdir "[directory name]" : 디렉토리 생성 rm -r "[directory name]" : 해당 디렉토리와 디렉토리 내부의 파일들을 삭제(휴지통을 거치지 않고 바로 완전삭제되니 주의!). Ctrl + ..