Граф коммитов

7 Коммитов

Автор SHA1 Сообщение Дата
Derrick Stolee 04b5bf0525 CONTRIBUTING: Update build instructions
Signed-off-by: Derrick Stolee <stolee@gmail.com>
2020-01-15 09:47:38 -05:00
Derrick Stolee 90dc375c9d Readme: move building instructions to CONTRIBUTING.md
Signed-off-by: Derrick Stolee <stolee@gmail.com>
2020-01-15 09:35:08 -05:00
John Briggs 40a6955981 Improve legal docs in preparation for public release 2020-01-08 12:58:46 -05:00
Derrick Stolee c147b3d267 Rename cleanup: Old "VFS4G" now "Scalar"
When doing the rename, I converted all instances of "VFS" to "Scalar"
without first replacing the string "VFS4G". This left a bunch of
"Scalar4G" instances around the codebase. Fix that using the same
replace logic as before.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
2019-08-11 21:37:38 -04:00
Derrick Stolee 90e8c1bd69 [REPLACE] Replace old name in all files
This will change many files, and likely not build

Here is the script used to do the replacement:

```

NEWNAME="Scalar"
LOWERNAME="scalar"

for file in $(find . -type f -name '*')
    do
        if [[ $file == *.png ]]
        then
            continue
        fi
        if [[ $file == *.ico ]]
        then
            continue
        fi
        if [[ $file == *cddl1.txt ]]
        then
            continue
        fi
        if [[ $file == *.rc ]]
        then
            continue
        fi
        if [[ $file == *index_v4 ]]
        then
            continue
        fi
        if [[ $file == ./.git/* ]]
        then
            continue
        fi

        sed -i .bak "s/GVFS/$NEWNAME/g" "$file"
        sed -i .bak "s/VFS For Git/$NEWNAME/g" "$file"
        sed -i .bak "s/VFS for Git/$NEWNAME/g" "$file"
        sed -i .bak "s/VFSForGit/$NEWNAME/g" "$file"
        sed -i .bak "s/vfsforgit/$LOWERNAME/g" "$file"
        sed -i .bak "s/VFS/$NEWNAME/g" "$file"
        sed -i .bak "s/gvfs/$LOWERNAME/g" "$file"
    done

git commit -a -s -m "[REPLACE] Replace old name in all files" -m "This will change many files, and likely not build"
git clean -xdf
```

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
2019-08-10 12:41:55 -04:00
Derrick Stolee d748084d85 Delete all virtualization-specific code
* [X] Builds with BuildGVFSforWindows.bat
* [X] Passes unit tests with RunUnitTests.bat

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
2019-08-07 15:51:27 -04:00
William Baker e1c6d15d5e Add contributing guidelines to VFSForGit repo 2019-03-07 10:43:45 -08:00