我通过public class MyViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
public View view;
public TextView title;
public MyViewHolder(final View itemView) {
super(itemView);
itemView.setOnClickListener(this);
title=(TextView)itemView.findViewById(R.id.tv_title);
}
@Override
public void onClick(View view) {
// To get context. You can pass it to the adapter from activity when
// creating the instance of adapter or you can get it from Viewgroup
// inside onCreateViewHolder using parent.getContext().
startActivity(new Intent(context, NewActivity.class));
}
}
命令连接到(大学的)远程服务器。我想将上游数据从该服务器推送到远程git存储库。我试图只通过https(ssh键没有设置)来实现。
我试图通过命令来做到这一点:
ssh
但GitLab甚至没有问我关于我的凭据(存储库是私有的,所以我希望得到一些授权)。
我该怎么做?
修改 (对不起延迟,但由于ssh连接太多,我被大学网络踢了)
回应评论:
@Salman :
git push -u https://gitlab.com/username/reponame.git master
无效
(没有设定原点:git remote show origin
),
(原点设置为fatal: 'origin' does not appear to be a git repository
- 错误git@gitlab.com:username/reponame.git
)
@sajib khan :我收到以下错误消息:
ssh: connect to host gitlab.com port 22: Connection timed out
答案 0 :(得分:0)
无法连接到gitlab.com端口443:连接超时
那应该是proxy issue, as described here 这是典型的,当您没有直接的互联网访问但必须首先设置代理。