728x90
반응형

configure your Git identities: 

git config --global user.name "your_full_name"
git config --global user-email "your_email"

set your default branch to be main: 

git config --global init.defaultBranch main

set up auto-correct: 

git config --global help.autocorrect <duration>

<duration>: ms

verify your settings: 

git config --list

 

git init
git add .
git commit -m "initial commit"
git status

# in AWS console
git remote add origin  https://git-codecommit.us-east-1.amazonaws.com/v1/repos/sionna
git branch -M main

git config —global credential.helper '!aws codecommit credential-helper $@'
git config —global credential.UseHttpPath true

git push -u origin main

 

 

728x90
728x90

'Networking > Network' 카테고리의 다른 글

WebRTC  (0) 2025.10.29
data MTD  (0) 2025.08.18
docker Honeypot  (0) 2025.08.11
[AWS] 실험 환경 구성#1  (0) 2025.04.23
[Route53] name servers  (0) 2025.02.07

+ Recent posts