问题标签 [giteye]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
git - GitEye won't show changes
Using GitEye:
I have cloned my existing repository down from GitHub, to ... git / Android.Project
Using File Manager I have copied the updated files from my working directory ... ... Projects / Android.Project to ... git / Android.Project
My working directory does not have a .git file in it, so it is not being overwritten.
Using GitEye:
I tried dragging the files from the Working Tree Files view to the Staged Changes view, and am unsuccessful.
I am not attempting to commit and push the changes back to GitHub, and get the eror, "There are no staged Files"
Using CLI:
cd git / Android.Project git status
[List of modified and untracked files appears .... YAY!!!!]
git commit -a -m"Many Changes"
15 files changed, 1121 insertions(+), 410 deletions(-)
git status
nothing added to commit but untracked files present (use "git add" to track)
git add -A git commit -a -m"resource images"
git status
On branch master Your branch is ahead of 'origin/master' by 2 commits. (use "git push" to publish your local commits)
nothing to commit, working directory clean
git remote -v
origin https://github.com/enetarch/Android.Todo.git (fetch) origin https://github.com/enetarch/Android.Todo.git (push)
git push origin master
Counting objects: 83, done. Delta compression using up to 8 threads. Compressing objects: 100% (51/51), done. Writing objects: 100% (57/57), 49.92 KiB, done. Total 57 (delta 24), reused 0 (delta 0) To https://github.com/enetarch/Android.Todo.git ad6e5a9..047bb32 master -> master
So, I did all that through the CLI, why couldn't GitEye do this?
Back in GitEye I request to see the latest GIT commits and can see what I committed through CLI git.
So, any thoughts as to why this isn't working the way I expect it to?
Pardon the formatting issues, apparently StackOverflow doesn't like CLI copy/pastes
git - GitEye - 未选择存储库
我得到“未选择存储库”。但是如何选择存储库?我已经用谷歌搜索了它,但没有找到解决方案。我已经搜索了整个 GitEye UI,但似乎无法选择存储库。
git - 按下“Git 文件”时 GitEye 因氧气-gtk 而崩溃
我从http://www.collab.net/downloads/giteye下载了 GitEye,并在我的 Linux Kubuntu 14.4 上启动了它。然后我选择了我的 git 项目。这一直有效,直到我按下“Git Files”寄存器:GitEye 崩溃:
我认为这可能是我在 GTK2 中使用oxygen-gtk 的原因:https ://bugs.kde.org/show_bug.cgi?id=339174
在我的系统设置中将 GTK2 的oxygen-gtk 切换为 Raleigh 后,GitEye 不再崩溃了——但它看起来很糟糕。
我通读了错误报告,但我不明白我能做些什么来解决这个问题。我能做些什么?
顺便说一句:这是正确的网站还是我应该在 Linux&Unix 或 askUbuntu 上提问?
git - 是否可以将 BitBucket 与 GitEye 一起使用?
我正在尝试将来自 BitBucket 的存储库添加到 GitEye,但无法弄清楚如何将两者连接起来。有没有其他人能够做到这一点?
java - 安装 GitEye om Mac 64 位引发错误
Git eye 没有安装。
这是错误日志。
eclipse - Giteye 无法导入仓库
我正在使用最新版本的 GitEye,但无法导入本地存储库。
当我尝试它抛出 java.lang.NullPointerException。有没有人有解决方案?
据我所知,GitEye 使用 JGit 并且基于 eclipse。
以下是错误详细信息:
git - git- 适用于 Windows 和 Linux 的 GUI,可以检查特定文件和提交中的所有文件
我最近开始在我的工作流程中使用 git,但我遇到了一些问题。
让我概述一下我使用 git 的目的。我是一名电影制片人;因此,我使用的文件大多是大型文件,例如 Premiere Pro 和 After Effects 项目。使用 Git LFS,我可以对这些文件进行版本控制。
我在日常工作中使用的主要命令是:
1)git add $file
2)git commit
3)git checkout $commit $file
当我需要恢复旧版本的文件时
4)git checkout $commit .
当我需要恢复此特定提交中所有文件的旧版本而不重置或还原时,只需恢复在此特定提交中更改的文件
现在,我个人对在命令行中执行此操作感到满意,因为我使用它很舒服,因为我已经使用 Linux 几年了。但是,我的一些同事使用它并不那么舒服,如果我能找到一个适用于 Windows 和 Linux(至少)的 git GUI,我可以在其中执行上述命令,那将非常有帮助。
在我尝试过的所有方法中,添加和提交都是可行的(很明显)。然而,退房是另一回事。
在 GitEye 中,我最喜欢的一个有几个原因,我找不到任何方法来签出一个文件或多个文件。我试过在网上寻找任何帮助,但没有任何运气。现在我有一种感觉,我可能会错过一些东西,所以如果我错过了,请告诉我。
我也试过 SmartGit。我设法找到了一种从提交中签出一个文件的方法,这很好。但是,我找不到在一次提交中同时签出多个或所有文件的方法,如果出于任何原因我需要将某些文件恢复到以前的版本,但我有其他文件,这将非常烦人重置或恢复将意味着它们将被删除。
似乎在做我需要的唯一 GUI 是 SourceTree,但问题是它在 Linux 上不起作用,这对我来说是必须的。
我什至尝试在 git-gui 中使用此问题中批准的答案:Reset a file in git gui
但是,我无法让它为我工作。即使我这样做了,我也希望将 git-gui 作为最后的解决方案,因为它的基本界面可能对我的同事来说就像命令行一样可怕。