Gitを使用するときに混同される概念


.gitingnore

  • Git上のファイル設定
  • .
  • gitと同じ位置にある

    githubプライベートリポジトリを共有したい場合は、


    new repository privateの作成→manageaccessにアクセスしてパートナーを追加し、招待

    Git未プッシュコミット確認コマンド

    git log --branches --not --remotes

    git pushエラー:pathspec""gitで既知のファイルと一致しません


    一度もコミットしなかったことによるエラー
    git init
    git add .
    git commit -m "message"
    git push origin master
    ほとんど解決できる
    https://rrecoder.tistory.com/88

    gitブランチの作成とプッシュ

    git init
    git remote add origin https://github.com/~.git
    git pull origin master
    git checkout -b master
    git add .
    git commit -m "message"
    git push origin master

    CRLFはLF(または逆)に置き換えられます

    git config --global core.autocrlf true解決する

    プッシュされたGitコミットの変更

    git commit --amend -m "원하는 변경 내용 입력"
    git push origin [브랜치명] -f