firefly debian chrome, git 기본 세팅
Chrome과 Git credential은 어떻게 설정하나요? ARM64 Chrome과 Git 설치 후 git config, credential.helper store, clone 순서로 설정합니다.
GGAMI
일단 기본적으로 https://ggami.net/posts/334 에서 disk mount 및 docker install 까지 진행하면 된다.
그 이후의 chrome 및 git 세팅이다.
sudo apt update
sudo apt upgrade -y
wget https://dl.google.com/linux/direct/google-chrome-stable_current_arm64.deb
dpkg --print-architecture
sudo apt install ./google-chrome-stable*.deb
google-chrome-stable --version
sudo apt install -y git
git --version
git config --global user.name "YOUR_GITHUB_USERNAME"
git config --global user.email "YOUR_GITHUB_EMAIL"
git config --global credential.helper store
git clone https://github.com/OWNER/REPOSITORY.git
cat ~/.git-credentials이 순서대로하면 chrome 설치 및 git credential 까지 모두 다 세팅된다.