I have taken over a project where files on a server are not in a git repository. A git repository was created at some point, but files were still edited on the server without being added to the repository and tracked. Is there a way that I can perform a git diff on the server files against a git repository to see how far off I am?
git diff files not in repository against files in repository
541 Views Asked by Nate Biondi At
1
There are 1 best solutions below
Related Questions in GIT
- Push mysql database script to server using git
- Git show's file path
- Git > diffs filtered, show only certain changed classes/files
- Pushing to git repository hosted by Visual studio online without entering user name and password
- How do I create my own Git branch to work on?
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- Sub-directory into independent repository and later merge back into main repository
- How to find the Git Revision Hash in a synced SVN repo using SubGit?
- eclipse errors when try to change to master git branch
- How to have Heroku build my development branch on a staging server?
- Is "Merged in" a commit message created by bitbucket, or git?
- Git: Multiple projects under one directory
- Permission denied hg-git
- Is it possible to clone a private git repo without adding ssh keys
- Track file in master repository which is ignored in submodule
Related Questions in GIT-DIFF
- Can I use `diff ...` as an indicator for branch cleanup?
- Git: Differences since a commit
- Compare committed revision with server one for the same branch
- Difference between single commit on branch and trunk
- Differences between the staged and unstaged versions of the same file, using difftool
- Git merge- will old problems be merged into master if I merge an old branch?
- git diff: many patches with three '@' symbol
- How to default to side-by-side view for diff in GitWeb?
- Git merge- Already up-to-date: hard reset?
- Git ignore BOM (prevent git diff from showing byte order mark changes)
- Git show whole file changes
- Can git diff be configured to not indicate a conflict on created files with same content?
- make git diff output changed function names only
- A git diff for what's new/modified/deleted from my current branch
- git-diff: not taking line order into account
Related Questions in GIT-UNTRACKED
- Git ignore and untrack file [Yes I already readed the other posts]
- Why my files(photos) are in untracked files?
- Git untrack and push
- Git status command - entire computer under untracked files
- Excluding .idea directory from project pulled by git clone
- How do I remove untracked directory tree (submodule / sub-repository) from main git repository?
- Git: how to reset untracked files?
- Git submodule now listed as untracked
- VSCode/Git over 5k new changes in BranchA: commit, then switch to BranchB and untracked changes show up
- git diff files not in repository against files in repository
- git shows untracked files on master but not on develop
- .vs showing as untracked file in git bash - what do i do?
- Git track untracked files without adding to commit
- Lost tracked files when doing git stash --include-untracked
- How to revert git clean
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Did you try using
vimdiffinstead ofgit diff?You can compare any two files using
vimdiff, it'll open both files next to each other, and highlight the changes.vimdiff <path_to_file1> <path_to_file2>