Không đẩy được thông tin lên server git - QuânSysAd's Blog

13 tháng 7 2018

Không đẩy được thông tin lên server git

Bạn làm lệnh push mà gặp lỗi sau khi mới tạo repository.
$ git push origin master
error: src refspec master does not match any.
error: failed to push some refs to
Nguyên nhân:
Hãy thiết lập các thông tin xác thực cho account. Khai báo bắt buộc bao gồm cả email và username.
git config --global user.name example
git config --global user.email example@example.com.
Sau đó hãy push như bình thường:
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin http://example.com:3000/example/example-repo.git
git push -u origin master

Không có nhận xét nào: