파일이 git에 존재합니까?

파일이 git에 존재합니까?

차단하지 않고도 동일한 문제가 발생합니다.

git rm projects.py나는 다음을 사용할 때 를 사용하지 않습니다 :

git cp projectsTABTAB

projectsFindFrame.py projectsInsert.py

또한 내가 사용할 때 :

git show a3ea2118bf1c5e2c6aa0974d0b6ff7415bd044ef

projects.py 파일의 내용을 차단했습니다.

commit a3ea2118bf1c5e2c6aa0974d0b6ff7415bd044ef
Author: Mohsen Pahlevanzadeh <mohsen@debian>
Date:   Wed Oct 9 04:21:14 2013 +0330

    formValidators has been added, all of *_Insert component has been added to Projects() class.

diff --git a/projects.py b/projects.py
new file mode 100644
index 0000000..d76685b
--- /dev/null
+++ b/projects.py
@@ -0,0 +1,303 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+
+from tables import *
+from dbabslayer import *
+from languagecodes import *
+from PyQt4 import QtCore, QtGui
+
+
+try:
+    _fromUtf8 = QtCore.QString.fromUtf8
+except AttributeError:
+    def _fromUtf8(s):
+        return s
+
+try:
+    _encoding = QtGui.QApplication.UnicodeUTF8
+    def _translate(context, text, disambig):
+        return QtGui.QApplication.translate(context, text, disambig, _encoding)
+except AttributeError:
+    def _translate(context, text, disambig):
+        return QtGui.QApplication.translate(context, text, disambig)
+
+
+
+
+class Projects(QtGui.QMainWindow):

내 질문그것은: 나는 왜 그것을 할 수 없습니까 git cp projects.py? 그러나 이것은 불가피하다.

답변1

Tab완료 결과 에 따르면 projects.py현재 결제에 없는 것 같습니다. 아니면 적어도 현재 디렉터리에 없습니다. git ls-files | grep projects.pyGit이 현재 파일이 존재한다고 생각하는지 체크아웃에서 확인했다고 가정해 보겠습니다 .

파일이 표시되지 않으면 ls-files해당 파일이 어느 분기에 있는지 알아내야 합니다.

어디에 있는지 기억나지 않는다면 다음을 사용하는 것이 좋습니다.힘내 GUI과거와 현재의 나무를 탐색해 보세요. 일단 알고 나면언제파일이 이미 존재하므로 복사할 위치를 알 수 있습니다.~에서.

관련 정보