Git在每次提交时都存储登台索引?

时间:2019-02-27 08:49:39

标签: git git-commit git-cherry-pick

需要以下帮助;

  1. def is_leap(year): leap = False leap1=True b=[] for a in range(1800,year+200,4): b.append(a) c=[1800,1900,2100,2200,2300,2500,2600,2700,2800,2900] for d in range(len(c)): e=c[d] if e in b: b.remove(e) if year in b: return leap1 else: return leap year = int(input()) print(is_leap(year)) 如何知道git的对象版本?
  2. 它是否将登台索引与提交一起存储?
  3. 像它如何发挥承诺?甚至在合并过程中

0 个答案:

没有答案