tag push
git push origin <TAG명>
tag delete
git push origin :<TAG명>
tag push
git push origin <TAG명>
tag delete
git push origin :<TAG명>
git remote branch를 삭제하고 싶을 때.
$ git push --delete origin new_ko_KR_translation
Raspbian 설치 후에 기본 사용자인 pi를 지우고, 내 아이디를 쓰고 싶어서 지워봤다.
ssh 같은거 열면 pi로 막 들어올까봐…
모든 작업은 root로 진행했다.
adduser dasomoli
usermod -aG sudo dasomoli
polkit local authority 설정
vi /etc/polkit-1/localauthority.conf.d/60-desktop-policy.conf
AdminIdentities=unix-group:sudo;unix-user:0
vi /etc/lightdm/lightdm.conf
autologin-user=dasomoli
vi /etc/systemd/system/autologin@.service
ExecStart=-/sbin/agetty –autologin dasomoli –noclear %I $TERM
vi /etc/systemd/system/getty@tty1.service.d/autologin.conf
ExecStart=-/sbin/agetty –autologin dasomoli –noclear %I $TERM
pi 지우기
deluser –remove-home –remove-all-files pi
delgroup pi
참고: https://www.raspberrypi.org/forums/viewtopic.php?t=202618
이거도 가끔 하는데 할 때 마다 긁자!
rm -rf `git status | grep -P “^#\t” | awk ‘{ print $2 }’`