터미널에서 SSH 접속하기
터미널에서 SSH 접속하기 Usage sudo ssh -t <USERNAME>@<IP_ADDRESS> -p 22 -i "<KEY>" Example sudo ssh -t ubuntu@127.0.0.0 -p 22 -i "private.pem"
터미널에서 SSH 접속하기 Usage sudo ssh -t <USERNAME>@<IP_ADDRESS> -p 22 -i "<KEY>" Example sudo ssh -t ubuntu@127.0.0.0 -p 22 -i "private.pem"
깃 푸시 저장소 추가하는 방법 $ vi .git/config … [remote "origin"] url = git@github.com:username/repository.git fetch = +refs/heads/*:refs/remotes/origin/* pushurl = git@gitlab.com:username/repository.git Using Command Pull multiple: git fetch –all View existing remotes: …
ShellScript 에서 xargs 사용하기 Usage When you are trying to delete too many files using rm, you may get error message: /bin/rm Argument list too long – Linux. Use xargs …
깃에서 사용자정보 변경하기 check username and email git config user.name; git config user.email; change username git config user.name <New name>; change user email git config user.email <New email>; Post Tags: …
깃에서 커밋된 사용자정보 변경하기 git filter-branch –force –env-filter "GIT_AUTHOR_NAME='NEW_NAME'; GIT_AUTHOR_EMAIL='NEW_EMAIL';" — –all; git filter-branch –force –env-filter "GIT_COMMITTER_NAME='NEW_NAME'; GIT_COMMITTER_EMAIL='NEW_EMAIL';" — –all; change committer $ git filter-branch –force –env-filter ' if [ …