他们是如何以任何方式联系的?
答案 0 :(得分:6)
git可以完美地克隆空存储库。
但是在这种情况下,你最终会得到一个带有 no branch 的回购,这可能会让Git初学者感到不安。
这也意味着,当您在该空克隆仓库中创建自己的提交时,需要在第一次推送时设置upstream branch,并使用is_float
。
再一次,当你发现Git时有点麻烦
请参阅“Why do I need to explicitly push a new branch?”
因此建议至少创建一个文件,这意味着 final PackageManager pm = context.getPackageManager();
// get a list of installed apps.
List<ApplicationInfo> packages = pm.getInstalledApplications(0);
// loop through the list of installed packages and see if the selected
// app is in the list
for (ApplicationInfo packageInfo : packages) {
//Get Package Name
String packageName=packageInfo.packageName;
// get the UID for the selected app
int UID = packageInfo.uid;
ApplicationInfo app = null;
try {
app = pm.getApplicationInfo(packageName, 0);
} catch (PackageManager.NameNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//Get App Name
String appName=pm.getApplicationLabel(app);
//likewise you can get other information
}
分支中至少有一个提交
此外,克隆的repo现在有一个本地 struct Base1 { virtual void f1(); };
struct Base2 { virtual void f2(); };
struct Derived : Base1, Base2 {};
Base1* b1 = new Derived();
// To cast it to a base2 *, cast it first to a derived *
Derived *d = static_cast<Derived *>(b1);
Base2 *b2 = static_cast<Base2 *>(d);
分支,其上游分支已经设置:当新的提交在本地完成时,一个简单的git push -u origin master
足以将它们发送到GitHub回购。
这两点(带有master
分支的本地仓库,和带有远程跟踪分支master
)可以提供更轻松的体验。
另一方面,如果您要导入现有的仓库,则需要一个空的仓库开头。