3

I am working on a project in Bootstrap 4. I suspect that core file have been disturbed/changed by other developers and want to prove if i am right or wrong. How can i compare to both, as it is a huge framework.

andreas
  • 16,357
  • 12
  • 72
  • 76
localhost
  • 822
  • 2
  • 20
  • 51
  • 1
    Redownload the Bootstrap4 source files you are using and make a diff (you can diff whole directories) – andreas Feb 22 '17 at 13:52

3 Answers3

1

Yes, you can if you are using version control software (git?). If you don't use it it might be hard to show that change.

fernando
  • 814
  • 1
  • 9
  • 24
1

I assume your Bootstrap core files are in dir1/ and you are on linux (or have access to a terminal, i.e. git shell).

  1. Download the Bootstrap4 core files again into dir2/ next to dir1
  2. Navigate to the parent directory of dir1 and dir2 in your terminal
  3. run a diff i.e.: $ diff -r dir1/ dir2/
  4. Check the output for differences
andreas
  • 16,357
  • 12
  • 72
  • 76
0

To expand on Andreas's answer, you can diff in a number of ways.

$ Diff

Most popular is likely shell/terminal diff as mentioned in Andrea's answer.

GitHub

You could also use version control tools, upload each as a branch, and see the diff in GitHub.

Software

There's also a number of installable software. I often use BeyondCompare to compare directories of photos to see if they've been edited.

Alex Johnson
  • 1,504
  • 13
  • 20