관리 메뉴

Silver Library (Archived)

[Radical Treatment] git push error 본문

Personal DB

[Radical Treatment] git push error

Chesed Kim 2022. 4. 17. 14:49
반응형

Though this is known as not recommended...this still works perfectly IF that is for a personal project.

 

Radical solution:

<Caution: do not attempt this in a group project unless you know what'd happen>

 

In my case, I firstly disconnected the local git repository(VSCode) to my remote master (github repository) one.

To do that, I commenced this code:

 

git remote rm origin

 

This will certainly solve any git push & pull error issue.

 

How I encountered such error? 

When I started git remote code from a subfolder of its project, and encountered this error code once I try to commit it from upper location(of where it connected with the local git repository).

 

source:

https://stackoverflow.com/questions/29583706/how-to-disconnect-a-local-git-repository-from-remote-master

 

How to disconnect a local Git repository from remote master

How do I completely disconnect a local Git repository from all remote branches? I cloned a Git repository from github.com, but then it was deleted and I don't want Git to report any changes needing...

stackoverflow.com

https://stackoverflow.com/questions/20467179/git-push-rejected-non-fast-forward

 

Git push rejected "non-fast-forward"

I am fairly new to git, yet currently using it to manage our code in a team environment. I had some rebasing issues, and I fixed them using: git checkout --ours filename.txt git add filename.txt git

stackoverflow.com

 

Need to research:

What kind of clash will I face if I use this in a group project?

'Personal DB' 카테고리의 다른 글

How I define - for loop  (0) 2022.04.05
Simple explanation - Runtime complexity  (0) 2022.03.28
Software engineer? Or developer?  (0) 2022.03.24
[용어] FAANG-type companies  (0) 2022.01.03
Update Powershell via command line  (0) 2022.01.02