warning: CRLF will be replaced by LFwarning: CRLF को LF से बदला जाएगा
Git Windows-शैली (CRLF) line endings को Unix-शैली (LF) में परिवर्तित कर रहा है।
error: cannot rebase: You have unstaged changesGit rebase करने से मना कर रहा है क्योंकि working directory में uncommitted changes हैं।
आपने ऐसी फ़ाइलें संशोधित की हैं जो stage या commit नहीं हैं। Git को rebase करने के लिए एक clean working directory चाहिए क्योंकि इस प्रक्रिया के दौरान उसे फ़ाइलें संशोधित करनी होती हैं।
परिवर्तन commit करें: git add . && git commit -m 'WIP'। या उन्हें stash करें: git stash, rebase करें, फिर git stash pop। या परिवर्तन छोड़ें: git checkout . (विनाशकारी)।
warning: CRLF will be replaced by LFGit Windows-शैली (CRLF) line endings को Unix-शैली (LF) में परिवर्तित कर रहा है।
fatal: branch is already checked out at another worktreebranch को checkout नहीं किया जा सकता क्योंकि यह किसी अन्य worktree में पहले से checked out है।
remote: error: GH006: Protected branch update failedProtected branch पर push को branch protection rules के कारण अस्वीकार कर दिया गया।
fatal: Authentication failedremote server के साथ Git authentication विफल हो गई।
error: failed to push some refsPush इसलिए reject हो गया क्योंकि remote पर ऐसे changes हैं जो आपके पास locally नहीं हैं।
fatal: A branch named 'x' already existsनिर्दिष्ट नाम की ब्रांच रिपॉजिटरी में पहले से मौजूद है।