Action succeeds, log shows changes but files on server are not updated
See original GitHub issueBug Description So Iβm using this action since a while and it was working well. Now suddenly I have strange issues which I noticed yesterday and today during the deployment of two different projects: The actions is triggered on push to master. It runs completely and succeeds. The log shows file changes and removals. But on the server the files are not updated at all. They are still on their old status. I double checked the secrets and they are correct, I can also connect via FTP using those credentials. Could you please help?
My Action Config
# https://github.com/marketplace/actions/ftp-deploy
# 21.01.2021
# This is a basic workflow to help you get started with Actions
name: π Deploy website on push
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# pull_request:
# branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
web-deploy:
name: π Deploy
runs-on: ubuntu-latest
steps:
- name: π Get latest code
uses: actions/checkout@v2.3.2
with:
fetch-depth: 100
# get the last XXX commits from history
# Make sure this number is AT LEAST 2, that's because we need to see what has changed.
- name: π Sync files
uses: SamKirkland/FTP-Deploy-Action@4.0.0
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PASSWORD }}
exclude: .git*
- .git*/**
- **/.git*/**
- .github/*
- .gitignore
- */.gitignore
- */.gitkeep
- .git-ftp-ignore
- .git-ftp-include
- .gitlab-ci.yml
- readme.md
- *.md
- .htaccess
- *.config
- *.conf
- [Rr]obots.txt
- .editorconfig
- .gitattributes
- user/*
- !user/plugins/hyphens-in-urls/
- !user/plugins/random-bg/
- !user/plugins/random-shorturls/
- !user/index.html
- !user/**/index.html
- LICENSE
- composer.json
- composer.lock
- phpunit.xml.dist
- readme.html
- sample-public-api.txt
- sample-public-front-page.txt
- sample-remote-api-call.txt
- sample-robots.txt
- includes/**/tests/
- build/
- coverage/
- phpunit.xml
- tests/yourls-tests-config.php
- tests/vendor/
- tests/data/auth/config-test-auth-hashed.php
- tests/data/htaccess/test*
- Thumbs.db
- Desktop.ini
- .DS_Store
- /nbproject/
- .idea
My Action Log
2021-03-07T09:26:54.3558999Z ##[section]Starting: Request a runner to run this job
2021-03-07T09:26:54.7301023Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.7301116Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.7301566Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.9450901Z ##[section]Finishing: Request a runner to run this job
2021-03-07T09:27:03.1790274Z Current runner version: '2.277.1'
2021-03-07T09:27:03.1816835Z ##[group]Operating System
2021-03-07T09:27:03.1817978Z Ubuntu
2021-03-07T09:27:03.1818506Z 20.04.2
2021-03-07T09:27:03.1819053Z LTS
2021-03-07T09:27:03.1819766Z ##[endgroup]
2021-03-07T09:27:03.1820413Z ##[group]Virtual Environment
2021-03-07T09:27:03.1821219Z Environment: ubuntu-20.04
2021-03-07T09:27:03.1821903Z Version: 20210302.0
2021-03-07T09:27:03.1823397Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210302.0/images/linux/Ubuntu2004-README.md
2021-03-07T09:27:03.1824999Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F
2021-03-07T09:27:03.1826030Z ##[endgroup]
2021-03-07T09:27:03.1828429Z ##[group]GITHUB_TOKEN Permissions
2021-03-07T09:27:03.1830172Z Actions: write
2021-03-07T09:27:03.1830750Z Checks: write
2021-03-07T09:27:03.1831361Z Contents: write
2021-03-07T09:27:03.1832197Z Deployments: write
2021-03-07T09:27:03.1833082Z Issues: write
2021-03-07T09:27:03.1833848Z Metadata: read
2021-03-07T09:27:03.1834886Z OrganizationPackages: write
2021-03-07T09:27:03.1835591Z Packages: write
2021-03-07T09:27:03.1836262Z PullRequests: write
2021-03-07T09:27:03.1837008Z RepositoryProjects: write
2021-03-07T09:27:03.1838068Z SecurityEvents: write
2021-03-07T09:27:03.1838920Z Statuses: write
2021-03-07T09:27:03.1839723Z ##[endgroup]
2021-03-07T09:27:03.1843613Z Prepare workflow directory
2021-03-07T09:27:03.2585561Z Prepare all required actions
2021-03-07T09:27:03.2598732Z Getting action download info
2021-03-07T09:27:03.6392454Z Download action repository 'actions/checkout@v2.3.2'
2021-03-07T09:27:05.2532963Z Download action repository 'SamKirkland/FTP-Deploy-Action@4.0.0'
2021-03-07T09:27:05.6651906Z ##[group]Run actions/checkout@v2.3.2
2021-03-07T09:27:05.6653252Z with:
2021-03-07T09:27:05.6653830Z fetch-depth: 100
2021-03-07T09:27:05.6654802Z repository: xannasavin/YOURLS
2021-03-07T09:27:05.6655914Z token: ***
2021-03-07T09:27:05.6656554Z ssh-strict: true
2021-03-07T09:27:05.6657183Z persist-credentials: true
2021-03-07T09:27:05.6657796Z clean: true
2021-03-07T09:27:05.6658222Z lfs: false
2021-03-07T09:27:05.6658716Z submodules: false
2021-03-07T09:27:05.6659243Z ##[endgroup]
2021-03-07T09:27:06.1520199Z Syncing repository: xannasavin/YOURLS
2021-03-07T09:27:06.1521707Z ##[group]Getting Git version info
2021-03-07T09:27:06.1522995Z Working directory is '/home/runner/work/YOURLS/YOURLS'
2021-03-07T09:27:06.1569663Z [command]/usr/bin/git version
2021-03-07T09:27:06.1750594Z git version 2.30.1
2021-03-07T09:27:06.1775800Z ##[endgroup]
2021-03-07T09:27:06.1783853Z Deleting the contents of '/home/runner/work/YOURLS/YOURLS'
2021-03-07T09:27:06.1789220Z ##[group]Initializing the repository
2021-03-07T09:27:06.1792968Z [command]/usr/bin/git init /home/runner/work/YOURLS/YOURLS
2021-03-07T09:27:06.1876294Z hint: Using 'master' as the name for the initial branch. This default branch name
2021-03-07T09:27:06.1877603Z hint: is subject to change. To configure the initial branch name to use in all
2021-03-07T09:27:06.1878936Z hint: of your new repositories, which will suppress this warning, call:
2021-03-07T09:27:06.1879903Z hint:
2021-03-07T09:27:06.1881241Z hint: git config --global init.defaultBranch <name>
2021-03-07T09:27:06.1882305Z hint:
2021-03-07T09:27:06.1883773Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2021-03-07T09:27:06.1885910Z hint: 'development'. The just-created branch can be renamed via this command:
2021-03-07T09:27:06.1888218Z hint:
2021-03-07T09:27:06.1889839Z hint: git branch -m <name>
2021-03-07T09:27:06.1905446Z Initialized empty Git repository in /home/runner/work/YOURLS/YOURLS/.git/
2021-03-07T09:27:06.1917218Z [command]/usr/bin/git remote add origin https://github.com/xannasavin/YOURLS
2021-03-07T09:27:06.1963476Z ##[endgroup]
2021-03-07T09:27:06.1964608Z ##[group]Disabling automatic garbage collection
2021-03-07T09:27:06.1968404Z [command]/usr/bin/git config --local gc.auto 0
2021-03-07T09:27:06.2008077Z ##[endgroup]
2021-03-07T09:27:06.2015440Z ##[group]Setting up auth
2021-03-07T09:27:06.2024734Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-07T09:27:06.7601362Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-07T09:27:06.7603708Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-07T09:27:06.7605714Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-07T09:27:06.7607683Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-03-07T09:27:06.7608850Z ##[endgroup]
2021-03-07T09:27:06.7609638Z ##[group]Fetching the repository
2021-03-07T09:27:06.7611479Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=100 origin +bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8:refs/remotes/origin/master
2021-03-07T09:27:06.7612901Z remote: Enumerating objects: 1814, done.
2021-03-07T09:27:06.7613559Z remote: Counting objects: 0% (1/1814)
2021-03-07T09:27:06.7614205Z remote: Counting objects: 1% (19/1814)
2021-03-07T09:27:06.7615040Z remote: Counting objects: 2% (37/1814)
2021-03-07T09:27:06.7615882Z remote: Counting objects: 3% (55/1814)
2021-03-07T09:27:06.7616591Z remote: Counting objects: 4% (73/1814)
2021-03-07T09:27:06.7617497Z remote: Counting objects: 5% (91/1814)
2021-03-07T09:27:06.7618508Z remote: Counting objects: 6% (109/1814)
2021-03-07T09:27:06.7619157Z remote: Counting objects: 7% (127/1814)
2021-03-07T09:27:06.7619997Z remote: Counting objects: 8% (146/1814)
2021-03-07T09:27:06.7620775Z remote: Counting objects: 9% (164/1814)
2021-03-07T09:27:06.7621698Z remote: Counting objects: 10% (182/1814)
2021-03-07T09:27:06.7622950Z remote: Counting objects: 11% (200/1814)
2021-03-07T09:27:06.7623681Z remote: Counting objects: 12% (218/1814)
2021-03-07T09:27:06.7624508Z remote: Counting objects: 13% (236/1814)
2021-03-07T09:27:06.7625276Z remote: Counting objects: 14% (254/1814)
2021-03-07T09:27:06.7626168Z remote: Counting objects: 15% (273/1814)
2021-03-07T09:27:06.7626907Z remote: Counting objects: 16% (291/1814)
2021-03-07T09:27:06.7627847Z remote: Counting objects: 17% (309/1814)
2021-03-07T09:27:06.7628683Z remote: Counting objects: 18% (327/1814)
2021-03-07T09:27:06.7629520Z remote: Counting objects: 19% (345/1814)
2021-03-07T09:27:06.7630187Z remote: Counting objects: 20% (363/1814)
2021-03-07T09:27:06.7630851Z remote: Counting objects: 21% (381/1814)
2021-03-07T09:27:06.7631966Z remote: Counting objects: 22% (400/1814)
2021-03-07T09:27:06.7632735Z remote: Counting objects: 23% (418/1814)
2021-03-07T09:27:06.7633410Z remote: Counting objects: 24% (436/1814)
2021-03-07T09:27:06.7634031Z remote: Counting objects: 25% (454/1814)
2021-03-07T09:27:06.7634711Z remote: Counting objects: 26% (472/1814)
2021-03-07T09:27:06.7635415Z remote: Counting objects: 27% (490/1814)
2021-03-07T09:27:06.7636049Z remote: Counting objects: 28% (508/1814)
2021-03-07T09:27:06.7636715Z remote: Counting objects: 29% (527/1814)
2021-03-07T09:27:06.7637383Z remote: Counting objects: 30% (545/1814)
2021-03-07T09:27:06.7638091Z remote: Counting objects: 31% (563/1814)
2021-03-07T09:27:06.7638805Z remote: Counting objects: 32% (581/1814)
2021-03-07T09:27:06.7639471Z remote: Counting objects: 33% (599/1814)
2021-03-07T09:27:06.7640092Z remote: Counting objects: 34% (617/1814)
2021-03-07T09:27:06.7640921Z remote: Counting objects: 35% (635/1814)
2021-03-07T09:27:06.7641763Z remote: Counting objects: 36% (654/1814)
2021-03-07T09:27:06.7642369Z remote: Counting objects: 37% (672/1814)
2021-03-07T09:27:06.7644589Z remote: Counting objects: 38% (690/1814)
2021-03-07T09:27:06.7645401Z remote: Counting objects: 39% (708/1814)
2021-03-07T09:27:06.7646766Z remote: Counting objects: 40% (726/1814)
2021-03-07T09:27:06.7649034Z remote: Counting objects: 41% (744/1814)
2021-03-07T09:27:06.7649813Z remote: Counting objects: 42% (762/1814)
2021-03-07T09:27:06.7650459Z remote: Counting objects: 43% (781/1814)
2021-03-07T09:27:06.7651465Z remote: Counting objects: 44% (799/1814)
2021-03-07T09:27:06.7652339Z remote: Counting objects: 45% (817/1814)
2021-03-07T09:27:06.7653266Z remote: Counting objects: 46% (835/1814)
2021-03-07T09:27:06.7654121Z remote: Counting objects: 47% (853/1814)
2021-03-07T09:27:06.7655050Z remote: Counting objects: 48% (871/1814)
2021-03-07T09:27:06.7656172Z remote: Counting objects: 49% (889/1814)
2021-03-07T09:27:06.7656843Z remote: Counting objects: 50% (907/1814)
2021-03-07T09:27:06.7657741Z remote: Counting objects: 51% (926/1814)
2021-03-07T09:27:06.7659059Z remote: Counting objects: 52% (944/1814)
2021-03-07T09:27:06.7660119Z remote: Counting objects: 53% (962/1814)
2021-03-07T09:27:06.7660930Z remote: Counting objects: 54% (980/1814)
2021-03-07T09:27:06.7661897Z remote: Counting objects: 55% (998/1814)
2021-03-07T09:27:06.7663070Z remote: Counting objects: 56% (1016/1814)
2021-03-07T09:27:06.7663906Z remote: Counting objects: 57% (1034/1814)
2021-03-07T09:27:06.7664625Z remote: Counting objects: 58% (1053/1814)
2021-03-07T09:27:06.7665445Z remote: Counting objects: 59% (1071/1814)
2021-03-07T09:27:06.7666512Z remote: Counting objects: 60% (1089/1814)
2021-03-07T09:27:06.7667419Z remote: Counting objects: 61% (1107/1814)
2021-03-07T09:27:06.7668323Z remote: Counting objects: 62% (1125/1814)
2021-03-07T09:27:06.7669344Z remote: Counting objects: 63% (1143/1814)
2021-03-07T09:27:06.7670037Z remote: Counting objects: 64% (1161/1814)
2021-03-07T09:27:06.7671171Z remote: Counting objects: 65% (1180/1814)
2021-03-07T09:27:06.7671861Z remote: Counting objects: 66% (1198/1814)
2021-03-07T09:27:06.7672600Z remote: Counting objects: 67% (1216/1814)
2021-03-07T09:27:06.7673345Z remote: Counting objects: 68% (1234/1814)
2021-03-07T09:27:06.7674352Z remote: Counting objects: 69% (1252/1814)
2021-03-07T09:27:06.7675095Z remote: Counting objects: 70% (1270/1814)
2021-03-07T09:27:06.7675788Z remote: Counting objects: 71% (1288/1814)
2021-03-07T09:27:06.7676431Z remote: Counting objects: 72% (1307/1814)
2021-03-07T09:27:06.7677127Z remote: Counting objects: 73% (1325/1814)
2021-03-07T09:27:06.7677851Z remote: Counting objects: 74% (1343/1814)
2021-03-07T09:27:06.7678560Z remote: Counting objects: 75% (1361/1814)
2021-03-07T09:27:06.7679204Z remote: Counting objects: 76% (1379/1814)
2021-03-07T09:27:06.7679893Z remote: Counting objects: 77% (1397/1814)
2021-03-07T09:27:06.7680584Z remote: Counting objects: 78% (1415/1814)
2021-03-07T09:27:06.7681260Z remote: Counting objects: 79% (1434/1814)
2021-03-07T09:27:06.7681956Z remote: Counting objects: 80% (1452/1814)
2021-03-07T09:27:06.7682647Z remote: Counting objects: 81% (1470/1814)
2021-03-07T09:27:06.7683290Z remote: Counting objects: 82% (1488/1814)
2021-03-07T09:27:06.7684024Z remote: Counting objects: 83% (1506/1814)
2021-03-07T09:27:06.7684745Z remote: Counting objects: 84% (1524/1814)
2021-03-07T09:27:06.7685388Z remote: Counting objects: 85% (1542/1814)
2021-03-07T09:27:06.7686387Z remote: Counting objects: 86% (1561/1814)
2021-03-07T09:27:06.7687317Z remote: Counting objects: 87% (1579/1814)
2021-03-07T09:27:06.7688019Z remote: Counting objects: 88% (1597/1814)
2021-03-07T09:27:06.7688773Z remote: Counting objects: 89% (1615/1814)
2021-03-07T09:27:06.7689805Z remote: Counting objects: 90% (1633/1814)
2021-03-07T09:27:06.7690640Z remote: Counting objects: 91% (1651/1814)
2021-03-07T09:27:06.7691499Z remote: Counting objects: 92% (1669/1814)
2021-03-07T09:27:06.7692226Z remote: Counting objects: 93% (1688/1814)
2021-03-07T09:27:06.7692877Z remote: Counting objects: 94% (1706/1814)
2021-03-07T09:27:06.7693568Z remote: Counting objects: 95% (1724/1814)
2021-03-07T09:27:06.7694287Z remote: Counting objects: 96% (1742/1814)
2021-03-07T09:27:06.7694939Z remote: Counting objects: 97% (1760/1814)
2021-03-07T09:27:06.7695659Z remote: Counting objects: 98% (1778/1814)
2021-03-07T09:27:06.7696355Z remote: Counting objects: 99% (1796/1814)
2021-03-07T09:27:06.7697061Z remote: Counting objects: 100% (1814/1814)
2021-03-07T09:27:06.7697741Z remote: Counting objects: 100% (1814/1814), done.
2021-03-07T09:27:06.7698512Z remote: Compressing objects: 0% (1/1080)
2021-03-07T09:27:06.7699275Z remote: Compressing objects: 1% (11/1080)
2021-03-07T09:27:06.7700128Z remote: Compressing objects: 2% (22/1080)
2021-03-07T09:27:06.7701150Z remote: Compressing objects: 3% (33/1080)
2021-03-07T09:27:06.7701914Z remote: Compressing objects: 4% (44/1080)
2021-03-07T09:27:06.7702998Z remote: Compressing objects: 5% (54/1080)
2021-03-07T09:27:06.7704348Z remote: Compressing objects: 6% (65/1080)
2021-03-07T09:27:06.7705121Z remote: Compressing objects: 7% (76/1080)
2021-03-07T09:27:06.7705787Z remote: Compressing objects: 8% (87/1080)
2021-03-07T09:27:06.7706496Z remote: Compressing objects: 9% (98/1080)
2021-03-07T09:27:06.7707241Z remote: Compressing objects: 10% (108/1080)
2021-03-07T09:27:06.7882551Z remote: Compressing objects: 11% (119/1080)
2021-03-07T09:27:06.7883279Z remote: Compressing objects: 12% (130/1080)
2021-03-07T09:27:06.7883851Z remote: Compressing objects: 13% (141/1080)
2021-03-07T09:27:06.7884420Z remote: Compressing objects: 14% (152/1080)
2021-03-07T09:27:06.7884988Z remote: Compressing objects: 15% (162/1080)
2021-03-07T09:27:06.7885547Z remote: Compressing objects: 16% (173/1080)
2021-03-07T09:27:06.7886113Z remote: Compressing objects: 17% (184/1080)
2021-03-07T09:27:06.7886684Z remote: Compressing objects: 18% (195/1080)
2021-03-07T09:27:06.7887258Z remote: Compressing objects: 19% (206/1080)
2021-03-07T09:27:06.7887836Z remote: Compressing objects: 20% (216/1080)
2021-03-07T09:27:06.7888411Z remote: Compressing objects: 21% (227/1080)
2021-03-07T09:27:06.7888971Z remote: Compressing objects: 22% (238/1080)
2021-03-07T09:27:06.7889555Z remote: Compressing objects: 23% (249/1080)
2021-03-07T09:27:06.7890126Z remote: Compressing objects: 24% (260/1080)
2021-03-07T09:27:06.7890685Z remote: Compressing objects: 25% (270/1080)
2021-03-07T09:27:06.7891440Z remote: Compressing objects: 26% (281/1080)
2021-03-07T09:27:06.7892030Z remote: Compressing objects: 27% (292/1080)
2021-03-07T09:27:06.7892610Z remote: Compressing objects: 28% (303/1080)
2021-03-07T09:27:06.7893193Z remote: Compressing objects: 29% (314/1080)
2021-03-07T09:27:06.7893779Z remote: Compressing objects: 30% (324/1080)
2021-03-07T09:27:06.7894523Z remote: Compressing objects: 31% (335/1080)
2021-03-07T09:27:06.7895100Z remote: Compressing objects: 32% (346/1080)
2021-03-07T09:27:06.7895663Z remote: Compressing objects: 33% (357/1080)
2021-03-07T09:27:06.7896221Z remote: Compressing objects: 34% (368/1080)
2021-03-07T09:27:06.7896775Z remote: Compressing objects: 35% (378/1080)
2021-03-07T09:27:06.7897526Z remote: Compressing objects: 36% (389/1080)
2021-03-07T09:27:06.7898094Z remote: Compressing objects: 37% (400/1080)
2021-03-07T09:27:06.7898650Z remote: Compressing objects: 38% (411/1080)
2021-03-07T09:27:06.7899208Z remote: Compressing objects: 39% (422/1080)
2021-03-07T09:27:06.7899769Z remote: Compressing objects: 40% (432/1080)
2021-03-07T09:27:06.7900324Z remote: Compressing objects: 41% (443/1080)
2021-03-07T09:27:06.7901045Z remote: Compressing objects: 42% (454/1080)
2021-03-07T09:27:06.7901587Z remote: Compressing objects: 43% (465/1080)
2021-03-07T09:27:06.7902145Z remote: Compressing objects: 44% (476/1080)
2021-03-07T09:27:06.7903818Z remote: Compressing objects: 45% (486/1080)
2021-03-07T09:27:06.7904420Z remote: Compressing objects: 46% (497/1080)
2021-03-07T09:27:06.7905393Z remote: Compressing objects: 47% (508/1080)
2021-03-07T09:27:06.7907184Z remote: Compressing objects: 48% (519/1080)
2021-03-07T09:27:06.7908231Z remote: Compressing objects: 49% (530/1080)
2021-03-07T09:27:06.7909350Z remote: Compressing objects: 50% (540/1080)
2021-03-07T09:27:06.7909993Z remote: Compressing objects: 51% (551/1080)
2021-03-07T09:27:06.7910941Z remote: Compressing objects: 52% (562/1080)
2021-03-07T09:27:06.7911882Z remote: Compressing objects: 53% (573/1080)
2021-03-07T09:27:06.7912457Z remote: Compressing objects: 54% (584/1080)
2021-03-07T09:27:06.7913026Z remote: Compressing objects: 55% (594/1080)
2021-03-07T09:27:06.7913690Z remote: Compressing objects: 56% (605/1080)
2021-03-07T09:27:06.7914281Z remote: Compressing objects: 57% (616/1080)
2021-03-07T09:27:06.7915121Z remote: Compressing objects: 58% (627/1080)
2021-03-07T09:27:06.7915890Z remote: Compressing objects: 59% (638/1080)
2021-03-07T09:27:06.7916482Z remote: Compressing objects: 60% (648/1080)
2021-03-07T09:27:06.7917100Z remote: Compressing objects: 61% (659/1080)
2021-03-07T09:27:06.7917853Z remote: Compressing objects: 62% (670/1080)
2021-03-07T09:27:06.7918576Z remote: Compressing objects: 63% (681/1080)
2021-03-07T09:27:06.7919344Z remote: Compressing objects: 64% (692/1080)
2021-03-07T09:27:06.7920238Z remote: Compressing objects: 65% (702/1080)
2021-03-07T09:27:06.7920971Z remote: Compressing objects: 66% (713/1080)
2021-03-07T09:27:06.7922141Z remote: Compressing objects: 67% (724/1080)
2021-03-07T09:27:06.7922975Z remote: Compressing objects: 68% (735/1080)
2021-03-07T09:27:06.7923635Z remote: Compressing objects: 69% (746/1080)
2021-03-07T09:27:06.7924291Z remote: Compressing objects: 70% (756/1080)
2021-03-07T09:27:06.7924976Z remote: Compressing objects: 71% (767/1080)
2021-03-07T09:27:06.7925626Z remote: Compressing objects: 72% (778/1080)
2021-03-07T09:27:06.7926293Z remote: Compressing objects: 73% (789/1080)
2021-03-07T09:27:06.7926949Z remote: Compressing objects: 74% (800/1080)
2021-03-07T09:27:06.7928384Z remote: Compressing objects: 75% (810/1080)
2021-03-07T09:27:06.7929191Z remote: Compressing objects: 76% (821/1080)
2021-03-07T09:27:06.7930301Z remote: Compressing objects: 77% (832/1080)
2021-03-07T09:27:06.7931394Z remote: Compressing objects: 78% (843/1080)
2021-03-07T09:27:06.7932102Z remote: Compressing objects: 79% (854/1080)
2021-03-07T09:27:06.7956662Z remote: Compressing objects: 80% (864/1080)
2021-03-07T09:27:06.7957621Z remote: Compressing objects: 81% (875/1080)
2021-03-07T09:27:06.7958359Z remote: Compressing objects: 82% (886/1080)
2021-03-07T09:27:06.7959089Z remote: Compressing objects: 83% (897/1080)
2021-03-07T09:27:06.7960236Z remote: Compressing objects: 84% (908/1080)
2021-03-07T09:27:06.7960796Z remote: Compressing objects: 85% (918/1080)
2021-03-07T09:27:06.7961567Z remote: Compressing objects: 86% (929/1080)
2021-03-07T09:27:06.7962141Z remote: Compressing objects: 87% (940/1080)
2021-03-07T09:27:06.7962730Z remote: Compressing objects: 88% (951/1080)
2021-03-07T09:27:06.7963291Z remote: Compressing objects: 89% (962/1080)
2021-03-07T09:27:06.7963857Z remote: Compressing objects: 90% (972/1080)
2021-03-07T09:27:06.7964426Z remote: Compressing objects: 91% (983/1080)
2021-03-07T09:27:06.7964993Z remote: Compressing objects: 92% (994/1080)
2021-03-07T09:27:06.7965554Z remote: Compressing objects: 93% (1005/1080)
2021-03-07T09:27:06.7966313Z remote: Compressing objects: 94% (1016/1080)
2021-03-07T09:27:06.7966903Z remote: Compressing objects: 95% (1026/1080)
2021-03-07T09:27:06.7967478Z remote: Compressing objects: 96% (1037/1080)
2021-03-07T09:27:06.7968061Z remote: Compressing objects: 97% (1048/1080)
2021-03-07T09:27:06.7968654Z remote: Compressing objects: 98% (1059/1080)
2021-03-07T09:27:06.7969227Z remote: Compressing objects: 99% (1070/1080)
2021-03-07T09:27:06.7969969Z remote: Compressing objects: 100% (1080/1080)
2021-03-07T09:27:06.7971375Z remote: Compressing objects: 100% (1080/1080), done.
2021-03-07T09:27:06.7972058Z Receiving objects: 0% (1/1814)
2021-03-07T09:27:06.7972747Z Receiving objects: 1% (19/1814)
2021-03-07T09:27:06.7973370Z Receiving objects: 2% (37/1814)
2021-03-07T09:27:06.7973975Z Receiving objects: 3% (55/1814)
2021-03-07T09:27:06.7974588Z Receiving objects: 4% (73/1814)
2021-03-07T09:27:06.7975446Z Receiving objects: 5% (91/1814)
2021-03-07T09:27:06.7976056Z Receiving objects: 6% (109/1814)
2021-03-07T09:27:06.7976654Z Receiving objects: 7% (127/1814)
2021-03-07T09:27:06.7977251Z Receiving objects: 8% (146/1814)
2021-03-07T09:27:06.7977833Z Receiving objects: 9% (164/1814)
2021-03-07T09:27:06.7978422Z Receiving objects: 10% (182/1814)
2021-03-07T09:27:06.7979025Z Receiving objects: 11% (200/1814)
2021-03-07T09:27:06.7979768Z Receiving objects: 12% (218/1814)
2021-03-07T09:27:06.7980646Z Receiving objects: 13% (236/1814)
2021-03-07T09:27:06.7981337Z Receiving objects: 14% (254/1814)
2021-03-07T09:27:06.7981999Z Receiving objects: 15% (273/1814)
2021-03-07T09:27:06.7982765Z Receiving objects: 16% (291/1814)
2021-03-07T09:27:06.7991079Z Receiving objects: 17% (309/1814)
2021-03-07T09:27:06.7991784Z Receiving objects: 18% (327/1814)
2021-03-07T09:27:06.7992287Z Receiving objects: 19% (345/1814)
2021-03-07T09:27:06.7992785Z Receiving objects: 20% (363/1814)
2021-03-07T09:27:06.7993291Z Receiving objects: 21% (381/1814)
2021-03-07T09:27:06.7993792Z Receiving objects: 22% (400/1814)
2021-03-07T09:27:06.7994294Z Receiving objects: 23% (418/1814)
2021-03-07T09:27:06.7994933Z Receiving objects: 24% (436/1814)
2021-03-07T09:27:06.7995429Z Receiving objects: 25% (454/1814)
2021-03-07T09:27:06.7995905Z Receiving objects: 26% (472/1814)
2021-03-07T09:27:06.7996392Z Receiving objects: 27% (490/1814)
2021-03-07T09:27:06.7996878Z Receiving objects: 28% (508/1814)
2021-03-07T09:27:06.7997361Z Receiving objects: 29% (527/1814)
2021-03-07T09:27:06.7997835Z Receiving objects: 30% (545/1814)
2021-03-07T09:27:06.7998309Z Receiving objects: 31% (563/1814)
2021-03-07T09:27:06.7999097Z Receiving objects: 32% (581/1814)
2021-03-07T09:27:06.7999585Z Receiving objects: 33% (599/1814)
2021-03-07T09:27:06.8000090Z Receiving objects: 34% (617/1814)
2021-03-07T09:27:06.8000600Z Receiving objects: 35% (635/1814)
2021-03-07T09:27:06.8001275Z Receiving objects: 36% (654/1814)
2021-03-07T09:27:06.8001792Z Receiving objects: 37% (672/1814)
2021-03-07T09:27:06.8002312Z Receiving objects: 38% (690/1814)
2021-03-07T09:27:06.8415721Z Receiving objects: 39% (708/1814)
2021-03-07T09:27:06.8417835Z Receiving objects: 40% (726/1814)
2021-03-07T09:27:06.8422775Z Receiving objects: 41% (744/1814)
2021-03-07T09:27:06.8442235Z Receiving objects: 42% (762/1814)
2021-03-07T09:27:06.8448769Z Receiving objects: 43% (781/1814)
2021-03-07T09:27:06.8449470Z Receiving objects: 44% (799/1814)
2021-03-07T09:27:06.8451310Z Receiving objects: 45% (817/1814)
2021-03-07T09:27:06.8455303Z Receiving objects: 46% (835/1814)
2021-03-07T09:27:06.8459219Z Receiving objects: 47% (853/1814)
2021-03-07T09:27:06.8462971Z Receiving objects: 48% (871/1814)
2021-03-07T09:27:06.8466826Z Receiving objects: 49% (889/1814)
2021-03-07T09:27:06.8470221Z Receiving objects: 50% (907/1814)
2021-03-07T09:27:06.8474241Z Receiving objects: 51% (926/1814)
2021-03-07T09:27:06.8478459Z Receiving objects: 52% (944/1814)
2021-03-07T09:27:06.8494082Z Receiving objects: 53% (962/1814)
2021-03-07T09:27:06.8517299Z Receiving objects: 54% (980/1814)
2021-03-07T09:27:06.8543420Z Receiving objects: 55% (998/1814)
2021-03-07T09:27:06.8580604Z Receiving objects: 56% (1016/1814)
2021-03-07T09:27:06.8589491Z Receiving objects: 57% (1034/1814)
2021-03-07T09:27:06.8590750Z Receiving objects: 58% (1053/1814)
2021-03-07T09:27:06.8593037Z Receiving objects: 59% (1071/1814)
2021-03-07T09:27:06.8600308Z Receiving objects: 60% (1089/1814)
2021-03-07T09:27:06.8600806Z Receiving objects: 61% (1107/1814)
2021-03-07T09:27:06.8630823Z Receiving objects: 62% (1125/1814)
2021-03-07T09:27:06.8631424Z Receiving objects: 63% (1143/1814)
2021-03-07T09:27:06.8632165Z Receiving objects: 64% (1161/1814)
2021-03-07T09:27:06.8639001Z Receiving objects: 65% (1180/1814)
2021-03-07T09:27:06.8639591Z Receiving objects: 66% (1198/1814)
2021-03-07T09:27:06.8673583Z Receiving objects: 67% (1216/1814)
2021-03-07T09:27:06.8702685Z Receiving objects: 68% (1234/1814)
2021-03-07T09:27:06.8726185Z Receiving objects: 69% (1252/1814)
2021-03-07T09:27:06.8730606Z Receiving objects: 70% (1270/1814)
2021-03-07T09:27:06.8758857Z Receiving objects: 71% (1288/1814)
2021-03-07T09:27:06.8763610Z Receiving objects: 72% (1307/1814)
2021-03-07T09:27:06.8767858Z Receiving objects: 73% (1325/1814)
2021-03-07T09:27:06.8845622Z Receiving objects: 74% (1343/1814)
2021-03-07T09:27:06.8846652Z Receiving objects: 75% (1361/1814)
2021-03-07T09:27:06.8847263Z Receiving objects: 76% (1379/1814)
2021-03-07T09:27:06.8849126Z Receiving objects: 77% (1397/1814)
2021-03-07T09:27:06.8849770Z Receiving objects: 78% (1415/1814)
2021-03-07T09:27:06.8850367Z Receiving objects: 79% (1434/1814)
2021-03-07T09:27:06.8850942Z Receiving objects: 80% (1452/1814)
2021-03-07T09:27:06.8851527Z Receiving objects: 81% (1470/1814)
2021-03-07T09:27:06.8852113Z Receiving objects: 82% (1488/1814)
2021-03-07T09:27:06.8852679Z Receiving objects: 83% (1506/1814)
2021-03-07T09:27:06.8853373Z Receiving objects: 84% (1524/1814)
2021-03-07T09:27:06.8853957Z Receiving objects: 85% (1542/1814)
2021-03-07T09:27:06.8854514Z Receiving objects: 86% (1561/1814)
2021-03-07T09:27:06.8855627Z Receiving objects: 87% (1579/1814)
2021-03-07T09:27:06.8856206Z Receiving objects: 88% (1597/1814)
2021-03-07T09:27:06.8856757Z Receiving objects: 89% (1615/1814)
2021-03-07T09:27:06.8857411Z Receiving objects: 90% (1633/1814)
2021-03-07T09:27:06.8857978Z Receiving objects: 91% (1651/1814)
2021-03-07T09:27:06.8858526Z Receiving objects: 92% (1669/1814)
2021-03-07T09:27:06.8859091Z Receiving objects: 93% (1688/1814)
2021-03-07T09:27:06.8863621Z Receiving objects: 94% (1706/1814)
2021-03-07T09:27:06.8875040Z Receiving objects: 95% (1724/1814)
2021-03-07T09:27:06.8916087Z Receiving objects: 96% (1742/1814)
2021-03-07T09:27:06.8917990Z remote: Total 1814 (delta 749), reused 1547 (delta 634), pack-reused 0
2021-03-07T09:27:06.8943206Z Receiving objects: 97% (1760/1814)
2021-03-07T09:27:06.8945788Z Receiving objects: 98% (1778/1814)
2021-03-07T09:27:06.8946882Z Receiving objects: 99% (1796/1814)
2021-03-07T09:27:06.8947553Z Receiving objects: 100% (1814/1814)
2021-03-07T09:27:06.8948242Z Receiving objects: 100% (1814/1814), 3.04 MiB | 15.97 MiB/s, done.
2021-03-07T09:27:06.8952749Z Resolving deltas: 0% (0/749)
2021-03-07T09:27:06.8956342Z Resolving deltas: 1% (8/749)
2021-03-07T09:27:06.8958199Z Resolving deltas: 2% (15/749)
2021-03-07T09:27:06.8959799Z Resolving deltas: 3% (23/749)
2021-03-07T09:27:06.8961378Z Resolving deltas: 4% (30/749)
2021-03-07T09:27:06.8963112Z Resolving deltas: 5% (38/749)
2021-03-07T09:27:06.8964622Z Resolving deltas: 6% (45/749)
2021-03-07T09:27:06.8966115Z Resolving deltas: 7% (53/749)
2021-03-07T09:27:06.8967657Z Resolving deltas: 8% (60/749)
2021-03-07T09:27:06.8969685Z Resolving deltas: 9% (68/749)
2021-03-07T09:27:06.8970558Z Resolving deltas: 10% (75/749)
2021-03-07T09:27:06.8972453Z Resolving deltas: 11% (83/749)
2021-03-07T09:27:06.8974048Z Resolving deltas: 12% (90/749)
2021-03-07T09:27:06.8975651Z Resolving deltas: 13% (98/749)
2021-03-07T09:27:06.8977281Z Resolving deltas: 14% (105/749)
2021-03-07T09:27:06.8978884Z Resolving deltas: 15% (113/749)
2021-03-07T09:27:06.8984357Z Resolving deltas: 16% (120/749)
2021-03-07T09:27:06.8986169Z Resolving deltas: 17% (128/749)
2021-03-07T09:27:06.8986793Z Resolving deltas: 18% (135/749)
2021-03-07T09:27:06.8987391Z Resolving deltas: 19% (143/749)
2021-03-07T09:27:06.8987943Z Resolving deltas: 20% (150/749)
2021-03-07T09:27:06.8988509Z Resolving deltas: 21% (158/749)
2021-03-07T09:27:06.8989075Z Resolving deltas: 22% (165/749)
2021-03-07T09:27:06.8989625Z Resolving deltas: 23% (173/749)
2021-03-07T09:27:06.8990716Z Resolving deltas: 24% (180/749)
2021-03-07T09:27:06.8992242Z Resolving deltas: 25% (188/749)
2021-03-07T09:27:06.8993788Z Resolving deltas: 26% (195/749)
2021-03-07T09:27:06.8994366Z Resolving deltas: 27% (203/749)
2021-03-07T09:27:06.8994965Z Resolving deltas: 28% (210/749)
2021-03-07T09:27:06.8995539Z Resolving deltas: 29% (218/749)
2021-03-07T09:27:06.8999390Z Resolving deltas: 30% (225/749)
2021-03-07T09:27:06.9001122Z Resolving deltas: 31% (233/749)
2021-03-07T09:27:06.9001701Z Resolving deltas: 32% (240/749)
2021-03-07T09:27:06.9003372Z Resolving deltas: 33% (248/749)
2021-03-07T09:27:06.9020081Z Resolving deltas: 34% (255/749)
2021-03-07T09:27:06.9020777Z Resolving deltas: 35% (263/749)
2021-03-07T09:27:06.9021338Z Resolving deltas: 36% (270/749)
2021-03-07T09:27:06.9021967Z Resolving deltas: 37% (278/749)
2021-03-07T09:27:06.9023421Z Resolving deltas: 38% (285/749)
2021-03-07T09:27:06.9023999Z Resolving deltas: 39% (293/749)
2021-03-07T09:27:06.9036419Z Resolving deltas: 40% (300/749)
2021-03-07T09:27:06.9037102Z Resolving deltas: 41% (308/749)
2021-03-07T09:27:06.9038519Z Resolving deltas: 42% (315/749)
2021-03-07T09:27:06.9039108Z Resolving deltas: 43% (323/749)
2021-03-07T09:27:06.9039677Z Resolving deltas: 44% (330/749)
2021-03-07T09:27:06.9040277Z Resolving deltas: 45% (338/749)
2021-03-07T09:27:06.9049058Z Resolving deltas: 46% (345/749)
2021-03-07T09:27:06.9050747Z Resolving deltas: 47% (353/749)
2021-03-07T09:27:06.9061610Z Resolving deltas: 48% (360/749)
2021-03-07T09:27:06.9074738Z Resolving deltas: 49% (368/749)
2021-03-07T09:27:06.9075415Z Resolving deltas: 50% (375/749)
2021-03-07T09:27:06.9081781Z Resolving deltas: 51% (382/749)
2021-03-07T09:27:06.9088451Z Resolving deltas: 52% (390/749)
2021-03-07T09:27:06.9095671Z Resolving deltas: 53% (397/749)
2021-03-07T09:27:06.9098809Z Resolving deltas: 54% (405/749)
2021-03-07T09:27:06.9107623Z Resolving deltas: 55% (412/749)
2021-03-07T09:27:06.9114388Z Resolving deltas: 56% (420/749)
2021-03-07T09:27:06.9126485Z Resolving deltas: 57% (427/749)
2021-03-07T09:27:06.9130642Z Resolving deltas: 58% (435/749)
2021-03-07T09:27:06.9133787Z Resolving deltas: 59% (442/749)
2021-03-07T09:27:06.9137442Z Resolving deltas: 60% (450/749)
2021-03-07T09:27:06.9139747Z Resolving deltas: 61% (457/749)
2021-03-07T09:27:06.9147722Z Resolving deltas: 62% (465/749)
2021-03-07T09:27:06.9161289Z Resolving deltas: 63% (472/749)
2021-03-07T09:27:06.9165532Z Resolving deltas: 64% (480/749)
2021-03-07T09:27:06.9169119Z Resolving deltas: 65% (487/749)
2021-03-07T09:27:06.9173598Z Resolving deltas: 66% (495/749)
2021-03-07T09:27:06.9178631Z Resolving deltas: 67% (502/749)
2021-03-07T09:27:06.9182878Z Resolving deltas: 68% (510/749)
2021-03-07T09:27:06.9184846Z Resolving deltas: 69% (517/749)
2021-03-07T09:27:06.9188072Z Resolving deltas: 70% (525/749)
2021-03-07T09:27:06.9190784Z Resolving deltas: 71% (532/749)
2021-03-07T09:27:06.9192303Z Resolving deltas: 72% (540/749)
2021-03-07T09:27:06.9193518Z Resolving deltas: 73% (547/749)
2021-03-07T09:27:06.9194517Z Resolving deltas: 74% (555/749)
2021-03-07T09:27:06.9195571Z Resolving deltas: 75% (562/749)
2021-03-07T09:27:06.9199228Z Resolving deltas: 76% (570/749)
2021-03-07T09:27:06.9201142Z Resolving deltas: 77% (577/749)
2021-03-07T09:27:06.9203033Z Resolving deltas: 78% (585/749)
2021-03-07T09:27:06.9206364Z Resolving deltas: 79% (592/749)
2021-03-07T09:27:06.9217847Z Resolving deltas: 80% (600/749)
2021-03-07T09:27:06.9228729Z Resolving deltas: 81% (607/749)
2021-03-07T09:27:06.9232293Z Resolving deltas: 82% (615/749)
2021-03-07T09:27:06.9235554Z Resolving deltas: 83% (622/749)
2021-03-07T09:27:06.9237370Z Resolving deltas: 84% (630/749)
2021-03-07T09:27:06.9240445Z Resolving deltas: 85% (637/749)
2021-03-07T09:27:06.9241813Z Resolving deltas: 86% (645/749)
2021-03-07T09:27:06.9244673Z Resolving deltas: 87% (652/749)
2021-03-07T09:27:06.9247638Z Resolving deltas: 88% (660/749)
2021-03-07T09:27:06.9251899Z Resolving deltas: 89% (667/749)
2021-03-07T09:27:06.9254340Z Resolving deltas: 90% (675/749)
2021-03-07T09:27:06.9257287Z Resolving deltas: 91% (682/749)
2021-03-07T09:27:06.9260644Z Resolving deltas: 92% (690/749)
2021-03-07T09:27:06.9266831Z Resolving deltas: 93% (697/749)
2021-03-07T09:27:06.9267433Z Resolving deltas: 94% (705/749)
2021-03-07T09:27:06.9267991Z Resolving deltas: 95% (712/749)
2021-03-07T09:27:06.9271768Z Resolving deltas: 96% (720/749)
2021-03-07T09:27:06.9279120Z Resolving deltas: 97% (727/749)
2021-03-07T09:27:06.9279690Z Resolving deltas: 98% (735/749)
2021-03-07T09:27:06.9280484Z Resolving deltas: 99% (742/749)
2021-03-07T09:27:06.9286077Z Resolving deltas: 100% (749/749)
2021-03-07T09:27:06.9286693Z Resolving deltas: 100% (749/749), done.
2021-03-07T09:27:06.9920734Z From https://github.com/xannasavin/YOURLS
2021-03-07T09:27:06.9923060Z * [new ref] bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8 -> origin/master
2021-03-07T09:27:06.9946673Z ##[endgroup]
2021-03-07T09:27:06.9947321Z ##[group]Determining the checkout info
2021-03-07T09:27:06.9951351Z ##[endgroup]
2021-03-07T09:27:06.9951927Z ##[group]Checking out the ref
2021-03-07T09:27:06.9953620Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2021-03-07T09:27:07.0717253Z Reset branch 'master'
2021-03-07T09:27:07.0725484Z Branch 'master' set up to track remote branch 'master' from 'origin'.
2021-03-07T09:27:07.0728249Z ##[endgroup]
2021-03-07T09:27:07.0745001Z [command]/usr/bin/git log -1
2021-03-07T09:27:07.0786129Z commit bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8
2021-03-07T09:27:07.0789969Z Author: xannasavin <48352696+xannasavin@users.noreply.github.com>
2021-03-07T09:27:07.0792314Z Date: Sun Mar 7 10:16:12 2021 +0100
2021-03-07T09:27:07.0793990Z
2021-03-07T09:27:07.0795881Z Update main.yml
2021-03-07T09:27:07.0953724Z ##[group]Run SamKirkland/FTP-Deploy-Action@4.0.0
2021-03-07T09:27:07.0954300Z with:
2021-03-07T09:27:07.0955186Z server: ***
2021-03-07T09:27:07.0955692Z username: ***
2021-03-07T09:27:07.0956256Z password: ***
2021-03-07T09:27:07.0960202Z exclude: .git* - .git*/** - **/.git*/** - .github/* - .gitignore - */.gitignore - */.gitkeep - .git-ftp-ignore - .git-ftp-include - .gitlab-ci.yml - readme.md - *.md - .htaccess - *.config - *.conf - [Rr]obots.txt - .editorconfig - .gitattributes - user/* - !user/plugins/hyphens-in-urls/ - !user/plugins/random-bg/ - !user/plugins/random-shorturls/ - !user/index.html - !user/**/index.html - LICENSE - composer.json - composer.lock - phpunit.xml.dist - readme.html - sample-public-api.txt - sample-public-front-page.txt - sample-remote-api-call.txt - sample-robots.txt - includes/**/tests/ - build/ - coverage/ - phpunit.xml - tests/yourls-tests-config.php - tests/vendor/ - tests/data/auth/config-test-auth-hashed.php - tests/data/htaccess/test* - Thumbs.db - Desktop.ini - .DS_Store - /nbproject/ - .idea
2021-03-07T09:27:07.0965361Z ##[endgroup]
2021-03-07T09:27:07.1541497Z ----------------------------------------------------------------
2021-03-07T09:27:07.1545707Z π Thanks for using ftp-deploy. Let's deploy some stuff!
2021-03-07T09:27:07.1547165Z ----------------------------------------------------------------
2021-03-07T09:27:07.1548763Z If you found this project helpful, please support it
2021-03-07T09:27:07.1555126Z by giving it a β on Github --> https://github.com/SamKirkland/FTP-Deploy-Action
2021-03-07T09:27:07.1557397Z or add a badge π·οΈ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge
2021-03-07T09:27:09.4105502Z ----------------------------------------------------------------
2021-03-07T09:27:09.6183492Z Last published on π
Friday, March 5, 2021, 9:09 AM
2021-03-07T09:27:09.6383693Z ----------------------------------------------------------------
2021-03-07T09:27:09.6385051Z Local Files: 799
2021-03-07T09:27:09.6385815Z Server Files: 799
2021-03-07T09:27:09.6386693Z ----------------------------------------------------------------
2021-03-07T09:27:09.6387465Z Calculating differences between client & server
2021-03-07T09:27:09.6389492Z ----------------------------------------------------------------
2021-03-07T09:27:09.6390675Z ποΈ Delete: .editorconfig
2021-03-07T09:27:09.6392478Z βοΈ File content is the same, doing nothing: admin/admin-ajax.php
2021-03-07T09:27:09.6393754Z βοΈ File content is the same, doing nothing: admin/index.php
2021-03-07T09:27:09.6395317Z βοΈ File content is the same, doing nothing: admin/install.php
2021-03-07T09:27:09.6396409Z βοΈ File content is the same, doing nothing: admin/plugins.php
2021-03-07T09:27:09.6397676Z βοΈ File content is the same, doing nothing: admin/tools.php
2021-03-07T09:27:09.6398665Z βοΈ File content is the same, doing nothing: admin/upgrade.php
2021-03-07T09:27:09.6400154Z ποΈ Delete: CHANGELOG.md
2021-03-07T09:27:09.6401480Z βοΈ File content is the same, doing nothing: css/cal.css
2021-03-07T09:27:09.6402551Z βοΈ File content is the same, doing nothing: css/infos.css
2021-03-07T09:27:09.6403523Z βοΈ File content is the same, doing nothing: css/palette.png
2021-03-07T09:27:09.6404651Z βοΈ File content is the same, doing nothing: css/share.css
2021-03-07T09:27:09.6405724Z βοΈ File content is the same, doing nothing: css/style.css
2021-03-07T09:27:09.6406618Z βοΈ File content is the same, doing nothing: css/tablesorter.css
2021-03-07T09:27:09.6407547Z βοΈ File content is the same, doing nothing: images/accept.png
2021-03-07T09:27:09.6409724Z βοΈ File content is the same, doing nothing: images/accept.svg
2021-03-07T09:27:09.6410815Z βοΈ File content is the same, doing nothing: images/admin-dashboard.gif
2021-03-07T09:27:09.6411873Z βοΈ File content is the same, doing nothing: images/asc.gif
2021-03-07T09:27:09.6413115Z βοΈ File content is the same, doing nothing: images/asc.svg
2021-03-07T09:27:09.6414869Z βοΈ File content is the same, doing nothing: images/bg.gif
2021-03-07T09:27:09.6415864Z βοΈ File content is the same, doing nothing: images/bg.svg
2021-03-07T09:27:09.6416767Z βοΈ File content is the same, doing nothing: images/blank.gif
2021-03-07T09:27:09.6417681Z βοΈ File content is the same, doing nothing: images/cancel.png
2021-03-07T09:27:09.6418615Z βοΈ File content is the same, doing nothing: images/cancel.svg
2021-03-07T09:27:09.6419568Z βοΈ File content is the same, doing nothing: images/chart_bar_add.png
2021-03-07T09:27:09.6420664Z βοΈ File content is the same, doing nothing: images/chart_bar_add.svg
2021-03-07T09:27:09.6421582Z βοΈ File content is the same, doing nothing: images/chart_bar.png
2021-03-07T09:27:09.6422677Z βοΈ File content is the same, doing nothing: images/chart_bar.svg
2021-03-07T09:27:09.6423673Z βοΈ File content is the same, doing nothing: images/copy-large.png
2021-03-07T09:27:09.6424592Z βοΈ File content is the same, doing nothing: images/copy.png
2021-03-07T09:27:09.6426887Z βοΈ File content is the same, doing nothing: images/copy.svg
2021-03-07T09:27:09.6428020Z βοΈ File content is the same, doing nothing: images/delete.png
2021-03-07T09:27:09.6428919Z βοΈ File content is the same, doing nothing: images/delete.svg
2021-03-07T09:27:09.6429808Z βοΈ File content is the same, doing nothing: images/desc.gif
2021-03-07T09:27:09.6430684Z βοΈ File content is the same, doing nothing: images/desc.svg
2021-03-07T09:27:09.6431558Z βοΈ File content is the same, doing nothing: images/error.png
2021-03-07T09:27:09.6432622Z βοΈ File content is the same, doing nothing: images/error.svg
2021-03-07T09:27:09.6433569Z βοΈ File content is the same, doing nothing: images/facebook.png
2021-03-07T09:27:09.6434513Z βοΈ File content is the same, doing nothing: images/facebook.svg
2021-03-07T09:27:09.6435483Z βοΈ File content is the same, doing nothing: images/favicon.gif
2021-03-07T09:27:09.6436431Z βοΈ File content is the same, doing nothing: images/favicon.svg
2021-03-07T09:27:09.6437621Z βοΈ File content is the same, doing nothing: images/filter.gif
2021-03-07T09:27:09.6438577Z βοΈ File content is the same, doing nothing: images/filter.svg
2021-03-07T09:27:09.6439508Z βοΈ File content is the same, doing nothing: images/loading.gif
2021-03-07T09:27:09.6440434Z βοΈ File content is the same, doing nothing: images/pencil.png
2021-03-07T09:27:09.6441581Z βοΈ File content is the same, doing nothing: images/pencil.svg
2021-03-07T09:27:09.6442746Z βοΈ File content is the same, doing nothing: images/share.png
2021-03-07T09:27:09.6443701Z βοΈ File content is the same, doing nothing: images/share.svg
2021-03-07T09:27:09.6444615Z βοΈ File content is the same, doing nothing: images/stats-anim.gif
2021-03-07T09:27:09.6445551Z βοΈ File content is the same, doing nothing: images/twitter.png
2021-03-07T09:27:09.6446470Z βοΈ File content is the same, doing nothing: images/twitter.svg
2021-03-07T09:27:09.6447412Z βοΈ File content is the same, doing nothing: images/yourls-logo.png
2021-03-07T09:27:09.6448660Z βοΈ File content is the same, doing nothing: images/yourls-logo.svg
2021-03-07T09:27:09.6449623Z βοΈ File content is the same, doing nothing: includes/auth.php
2021-03-07T09:27:09.6450786Z βοΈ File content is the same, doing nothing: includes/class-mysql.php
2021-03-07T09:27:09.6451855Z βοΈ File content is the same, doing nothing: includes/Config/Config.php
2021-03-07T09:27:09.6452896Z βοΈ File content is the same, doing nothing: includes/Config/Init.php
2021-03-07T09:27:09.6454305Z βοΈ File content is the same, doing nothing: includes/Config/InitDefaults.php
2021-03-07T09:27:09.6455357Z βοΈ File content is the same, doing nothing: includes/Database/Logger.php
2021-03-07T09:27:09.6456382Z βοΈ File content is the same, doing nothing: includes/Database/Options.php
2021-03-07T09:27:09.6457436Z βοΈ File content is the same, doing nothing: includes/Database/Profiler.php
2021-03-07T09:27:09.6458439Z βοΈ File content is the same, doing nothing: includes/Database/YDB.php
2021-03-07T09:27:09.6459965Z βοΈ File content is the same, doing nothing: includes/Exceptions/ConfigException.php
2021-03-07T09:27:09.6461318Z βοΈ File content is the same, doing nothing: includes/functions-api.php
2021-03-07T09:27:09.6462463Z βοΈ File content is the same, doing nothing: includes/functions-auth.php
2021-03-07T09:27:09.6463568Z βοΈ File content is the same, doing nothing: includes/functions-compat.php
2021-03-07T09:27:09.6464641Z βοΈ File content is the same, doing nothing: includes/functions-debug.php
2021-03-07T09:27:09.6465742Z βοΈ File content is the same, doing nothing: includes/functions-deprecated.php
2021-03-07T09:27:09.6466905Z βοΈ File content is the same, doing nothing: includes/functions-formatting.php
2021-03-07T09:27:09.6467989Z βοΈ File content is the same, doing nothing: includes/functions-geo.php
2021-03-07T09:27:09.6469001Z βοΈ File content is the same, doing nothing: includes/functions-html.php
2021-03-07T09:27:09.6470035Z βοΈ File content is the same, doing nothing: includes/functions-http.php
2021-03-07T09:27:09.6471384Z βοΈ File content is the same, doing nothing: includes/functions-infos.php
2021-03-07T09:27:09.6472484Z βοΈ File content is the same, doing nothing: includes/functions-install.php
2021-03-07T09:27:09.6473530Z βοΈ File content is the same, doing nothing: includes/functions-kses.php
2021-03-07T09:27:09.6474561Z βοΈ File content is the same, doing nothing: includes/functions-l10n.php
2021-03-07T09:27:09.6475590Z βοΈ File content is the same, doing nothing: includes/functions-links.php
2021-03-07T09:27:09.6476650Z βοΈ File content is the same, doing nothing: includes/functions-options.php
2021-03-07T09:27:09.6477646Z π File replace: includes/functions-plugins.php
2021-03-07T09:27:09.6479254Z βοΈ File content is the same, doing nothing: includes/functions-shorturls.php
2021-03-07T09:27:09.6480860Z βοΈ File content is the same, doing nothing: includes/functions-upgrade.php
2021-03-07T09:27:09.6481852Z π File replace: includes/functions.php
2021-03-07T09:27:09.6483230Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_.gif
2021-03-07T09:27:09.6484556Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_a1.gif
2021-03-07T09:27:09.6485503Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_a2.gif
2021-03-07T09:27:09.6486424Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ac.gif
2021-03-07T09:27:09.6487323Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ad.gif
2021-03-07T09:27:09.6488253Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ae.gif
2021-03-07T09:27:09.6489544Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_af.gif
2021-03-07T09:27:09.6490998Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ag.gif
2021-03-07T09:27:09.6492283Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ai.gif
2021-03-07T09:27:09.6493234Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_al.gif
2021-03-07T09:27:09.6494395Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_am.gif
2021-03-07T09:27:09.6495376Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_an.gif
2021-03-07T09:27:09.6496340Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ao.gif
2021-03-07T09:27:09.6497294Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ap.gif
2021-03-07T09:27:09.6498222Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_aq.gif
2021-03-07T09:27:09.6499566Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ar.gif
2021-03-07T09:27:09.6501084Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_as.gif
2021-03-07T09:27:09.6502129Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_at.gif
2021-03-07T09:27:09.6503991Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_au.gif
2021-03-07T09:27:09.6505406Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_aw.gif
2021-03-07T09:27:09.6506801Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ax.gif
2021-03-07T09:27:09.6507964Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_az.gif
2021-03-07T09:27:09.6509052Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ba.gif
2021-03-07T09:27:09.6510141Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bb.gif
2021-03-07T09:27:09.6511212Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bd.gif
2021-03-07T09:27:09.6512462Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_be.gif
2021-03-07T09:27:09.6514127Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bf.gif
2021-03-07T09:27:09.6515086Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bg.gif
2021-03-07T09:27:09.6516062Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bh.gif
2021-03-07T09:27:09.6517044Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bi.gif
2021-03-07T09:27:09.6518553Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bj.gif
2021-03-07T09:27:09.6519936Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bl.gif
2021-03-07T09:27:09.6520914Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bm.gif
2021-03-07T09:27:09.6521892Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bn.gif
2021-03-07T09:27:09.6522853Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bo.gif
2021-03-07T09:27:09.6523837Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_br.gif
2021-03-07T09:27:09.6524816Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bs.gif
2021-03-07T09:27:09.6525779Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bt.gif
2021-03-07T09:27:09.6526942Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bv.gif
2021-03-07T09:27:09.6528446Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bw.gif
2021-03-07T09:27:09.6529532Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bx.gif
2021-03-07T09:27:09.6530526Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_by.gif
2021-03-07T09:27:09.6531525Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_bz.gif
2021-03-07T09:27:09.6532759Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ca.gif
2021-03-07T09:27:09.6533746Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cc.gif
2021-03-07T09:27:09.6534756Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cd.gif
2021-03-07T09:27:09.6535767Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cf.gif
2021-03-07T09:27:09.6536945Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cg.gif
2021-03-07T09:27:09.6538128Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ch.gif
2021-03-07T09:27:09.6539204Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ci.gif
2021-03-07T09:27:09.6540248Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ck.gif
2021-03-07T09:27:09.6541268Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cl.gif
2021-03-07T09:27:09.6542573Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cm.gif
2021-03-07T09:27:09.6543673Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cn.gif
2021-03-07T09:27:09.6544672Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_co.gif
2021-03-07T09:27:09.6549117Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cr.gif
2021-03-07T09:27:09.6550248Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cs.gif
2021-03-07T09:27:09.6551325Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cu.gif
2021-03-07T09:27:09.6552419Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cv.gif
2021-03-07T09:27:09.6553791Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cx.gif
2021-03-07T09:27:09.6555092Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cy.gif
2021-03-07T09:27:09.6556400Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_cz.gif
2021-03-07T09:27:09.6557634Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_de.gif
2021-03-07T09:27:09.6559003Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_dj.gif
2021-03-07T09:27:09.6560054Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_dk.gif
2021-03-07T09:27:09.6561114Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_dm.gif
2021-03-07T09:27:09.6562158Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_do.gif
2021-03-07T09:27:09.6563185Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_dz.gif
2021-03-07T09:27:09.6564236Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ec.gif
2021-03-07T09:27:09.6565533Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ee.gif
2021-03-07T09:27:09.6566578Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_eg.gif
2021-03-07T09:27:09.6567628Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_eh.gif
2021-03-07T09:27:09.6568681Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_er.gif
2021-03-07T09:27:09.6569709Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_es.gif
2021-03-07T09:27:09.6570758Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_et.gif
2021-03-07T09:27:09.6571814Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_eu.gif
2021-03-07T09:27:09.6572850Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fi.gif
2021-03-07T09:27:09.6573902Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fj.gif
2021-03-07T09:27:09.6574944Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fk.gif
2021-03-07T09:27:09.6576088Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fm.gif
2021-03-07T09:27:09.6577131Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fo.gif
2021-03-07T09:27:09.6578180Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fr.gif
2021-03-07T09:27:09.6579227Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_fx.gif
2021-03-07T09:27:09.6580350Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ga.gif
2021-03-07T09:27:09.6581565Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gb.gif
2021-03-07T09:27:09.6583736Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gd.gif
2021-03-07T09:27:09.6584773Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ge.gif
2021-03-07T09:27:09.6585792Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gf.gif
2021-03-07T09:27:09.6586928Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gg.gif
2021-03-07T09:27:09.6587994Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gh.gif
2021-03-07T09:27:09.6589217Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gi.gif
2021-03-07T09:27:09.6590747Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gl.gif
2021-03-07T09:27:09.6592329Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gm.gif
2021-03-07T09:27:09.6593366Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gn.gif
2021-03-07T09:27:09.6594409Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gp.gif
2021-03-07T09:27:09.6595463Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gq.gif
2021-03-07T09:27:09.6596487Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gr.gif
2021-03-07T09:27:09.6597534Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gs.gif
2021-03-07T09:27:09.6598803Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gt.gif
2021-03-07T09:27:09.6599890Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gu.gif
2021-03-07T09:27:09.6601135Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gw.gif
2021-03-07T09:27:09.6602216Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_gy.gif
2021-03-07T09:27:09.6603361Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_hk.gif
2021-03-07T09:27:09.6604443Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_hm.gif
2021-03-07T09:27:09.6605738Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_hn.gif
2021-03-07T09:27:09.6606784Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_hr.gif
2021-03-07T09:27:09.6607993Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ht.gif
2021-03-07T09:27:09.6609074Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_hu.gif
2021-03-07T09:27:09.6610713Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_id.gif
2021-03-07T09:27:09.6612125Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ie.gif
2021-03-07T09:27:09.6613293Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_il.gif
2021-03-07T09:27:09.6614373Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_im.gif
2021-03-07T09:27:09.6615430Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_in.gif
2021-03-07T09:27:09.6616505Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_io.gif
2021-03-07T09:27:09.6617584Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_iq.gif
2021-03-07T09:27:09.6618661Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ir.gif
2021-03-07T09:27:09.6619723Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_is.gif
2021-03-07T09:27:09.6620795Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_it.gif
2021-03-07T09:27:09.6621948Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_je.gif
2021-03-07T09:27:09.6623346Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_jm.gif
2021-03-07T09:27:09.6624442Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_jo.gif
2021-03-07T09:27:09.6625525Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_jp.gif
2021-03-07T09:27:09.6626620Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ke.gif
2021-03-07T09:27:09.6627709Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kg.gif
2021-03-07T09:27:09.6628788Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kh.gif
2021-03-07T09:27:09.6629866Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ki.gif
2021-03-07T09:27:09.6630935Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_km.gif
2021-03-07T09:27:09.6632094Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kn.gif
2021-03-07T09:27:09.6633214Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kp.gif
2021-03-07T09:27:09.6634297Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kr.gif
2021-03-07T09:27:09.6635410Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kw.gif
2021-03-07T09:27:09.6636490Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ky.gif
2021-03-07T09:27:09.6637552Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_kz.gif
2021-03-07T09:27:09.6638630Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_la.gif
2021-03-07T09:27:09.6639707Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lb.gif
2021-03-07T09:27:09.6640762Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lc.gif
2021-03-07T09:27:09.6642180Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_le.gif
2021-03-07T09:27:09.6643478Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_li.gif
2021-03-07T09:27:09.6644763Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lk.gif
2021-03-07T09:27:09.6645782Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lr.gif
2021-03-07T09:27:09.6646827Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ls.gif
2021-03-07T09:27:09.6647871Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lt.gif
2021-03-07T09:27:09.6648898Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lu.gif
2021-03-07T09:27:09.6650213Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_lv.gif
2021-03-07T09:27:09.6651409Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ly.gif
2021-03-07T09:27:09.6652471Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ma.gif
2021-03-07T09:27:09.6653551Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mc.gif
2021-03-07T09:27:09.6654869Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_md.gif
2021-03-07T09:27:09.6655959Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_me.gif
2021-03-07T09:27:09.6657016Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mf.gif
2021-03-07T09:27:09.6658098Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mg.gif
2021-03-07T09:27:09.6659295Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mh.gif
2021-03-07T09:27:09.6660354Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mk.gif
2021-03-07T09:27:09.6661599Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ml.gif
2021-03-07T09:27:09.6663153Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mm.gif
2021-03-07T09:27:09.6664220Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mn.gif
2021-03-07T09:27:09.6665305Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mo.gif
2021-03-07T09:27:09.6666424Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mp.gif
2021-03-07T09:27:09.6667488Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mq.gif
2021-03-07T09:27:09.6668709Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mr.gif
2021-03-07T09:27:09.6670201Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ms.gif
2021-03-07T09:27:09.6671493Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mt.gif
2021-03-07T09:27:09.6672559Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mu.gif
2021-03-07T09:27:09.6673598Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mv.gif
2021-03-07T09:27:09.6674637Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mw.gif
2021-03-07T09:27:09.6675662Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mx.gif
2021-03-07T09:27:09.6676729Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_my.gif
2021-03-07T09:27:09.6677895Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_mz.gif
2021-03-07T09:27:09.6678972Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_na.gif
2021-03-07T09:27:09.6680029Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nc.gif
2021-03-07T09:27:09.6681071Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ne.gif
2021-03-07T09:27:09.6682447Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nf.gif
2021-03-07T09:27:09.6683609Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ng.gif
2021-03-07T09:27:09.6684617Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ni.gif
2021-03-07T09:27:09.6685624Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nl.gif
2021-03-07T09:27:09.6686606Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_no.gif
2021-03-07T09:27:09.6687969Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_np.gif
2021-03-07T09:27:09.6689033Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nr.gif
2021-03-07T09:27:09.6690023Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nu.gif
2021-03-07T09:27:09.6691027Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_nz.gif
2021-03-07T09:27:09.6692033Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_o1.gif
2021-03-07T09:27:09.6693009Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_om.gif
2021-03-07T09:27:09.6694027Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pa.gif
2021-03-07T09:27:09.6695041Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pe.gif
2021-03-07T09:27:09.6696058Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pf.gif
2021-03-07T09:27:09.6697046Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pg.gif
2021-03-07T09:27:09.6698081Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ph.gif
2021-03-07T09:27:09.6699471Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pk.gif
2021-03-07T09:27:09.6700507Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pl.gif
2021-03-07T09:27:09.6702955Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pm.gif
2021-03-07T09:27:09.6704108Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pn.gif
2021-03-07T09:27:09.6705172Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pr.gif
2021-03-07T09:27:09.6706259Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ps.gif
2021-03-07T09:27:09.6708057Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pt.gif
2021-03-07T09:27:09.6709072Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_pw.gif
2021-03-07T09:27:09.6710085Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_py.gif
2021-03-07T09:27:09.6711114Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_qa.gif
2021-03-07T09:27:09.6712125Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_re.gif
2021-03-07T09:27:09.6713121Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ro.gif
2021-03-07T09:27:09.6714121Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_rs.gif
2021-03-07T09:27:09.6715121Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ru.gif
2021-03-07T09:27:09.6716107Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_rw.gif
2021-03-07T09:27:09.6717110Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sa.gif
2021-03-07T09:27:09.6718344Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sb.gif
2021-03-07T09:27:09.6719565Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sc.gif
2021-03-07T09:27:09.6720626Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sd.gif
2021-03-07T09:27:09.6721988Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_se.gif
2021-03-07T09:27:09.6723059Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sg.gif
2021-03-07T09:27:09.6724064Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sh.gif
2021-03-07T09:27:09.6725076Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_si.gif
2021-03-07T09:27:09.6726082Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sj.gif
2021-03-07T09:27:09.6727068Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sk.gif
2021-03-07T09:27:09.6728069Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sl.gif
2021-03-07T09:27:09.6729072Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sm.gif
2021-03-07T09:27:09.6730050Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sn.gif
2021-03-07T09:27:09.6731251Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_so.gif
2021-03-07T09:27:09.6732265Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sr.gif
2021-03-07T09:27:09.6733252Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_st.gif
2021-03-07T09:27:09.6734262Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_su.gif
2021-03-07T09:27:09.6735263Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sv.gif
2021-03-07T09:27:09.6736269Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sy.gif
2021-03-07T09:27:09.6737252Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_sz.gif
2021-03-07T09:27:09.6738263Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tc.gif
2021-03-07T09:27:09.6739265Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_td.gif
2021-03-07T09:27:09.6740247Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tf.gif
2021-03-07T09:27:09.6741448Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tg.gif
2021-03-07T09:27:09.6742642Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_th.gif
2021-03-07T09:27:09.6743659Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tj.gif
2021-03-07T09:27:09.6744635Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tk.gif
2021-03-07T09:27:09.6745598Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tl.gif
2021-03-07T09:27:09.6746550Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tm.gif
2021-03-07T09:27:09.6747524Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tn.gif
2021-03-07T09:27:09.6748492Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_to.gif
2021-03-07T09:27:09.6749462Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tp.gif
2021-03-07T09:27:09.6751013Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tr.gif
2021-03-07T09:27:09.6752414Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tt.gif
2021-03-07T09:27:09.6753424Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tv.gif
2021-03-07T09:27:09.6754399Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tw.gif
2021-03-07T09:27:09.6755602Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_tz.gif
2021-03-07T09:27:09.6756639Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ua.gif
2021-03-07T09:27:09.6757866Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ug.gif
2021-03-07T09:27:09.6759200Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_uk.gif
2021-03-07T09:27:09.6760195Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_um.gif
2021-03-07T09:27:09.6761171Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_us.gif
2021-03-07T09:27:09.6762184Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_uy.gif
2021-03-07T09:27:09.6763321Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_uz.gif
2021-03-07T09:27:09.6764395Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_va.gif
2021-03-07T09:27:09.6765378Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_vc.gif
2021-03-07T09:27:09.6766386Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ve.gif
2021-03-07T09:27:09.6767392Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_vg.gif
2021-03-07T09:27:09.6768814Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_vi.gif
2021-03-07T09:27:09.6770185Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_vn.gif
2021-03-07T09:27:09.6771181Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_vu.gif
2021-03-07T09:27:09.6772162Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_wf.gif
2021-03-07T09:27:09.6773539Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ws.gif
2021-03-07T09:27:09.6774594Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_ye.gif
2021-03-07T09:27:09.6775637Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_yt.gif
2021-03-07T09:27:09.6776657Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_yu.gif
2021-03-07T09:27:09.6777694Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_za.gif
2021-03-07T09:27:09.6778736Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_zm.gif
2021-03-07T09:27:09.6779816Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_zr.gif
2021-03-07T09:27:09.6780868Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_zw.gif
2021-03-07T09:27:09.6782053Z βοΈ File content is the same, doing nothing: includes/geo/flags/flag_zz.gif
2021-03-07T09:27:09.6783486Z βοΈ File content is the same, doing nothing: includes/geo/GeoLite2-Country.mmdb
2021-03-07T09:27:09.6784485Z ποΈ Delete: includes/geo/README.md
2021-03-07T09:27:09.6785585Z βοΈ File content is the same, doing nothing: includes/load-yourls.php
2021-03-07T09:27:09.6786537Z ποΈ Delete: includes/vendor/aura/sql/README.md
2021-03-07T09:27:09.6787963Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/AbstractExtendedPdo.php
2021-03-07T09:27:09.6789322Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocator.php
2021-03-07T09:27:09.6790798Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocatorInterface.php
2021-03-07T09:27:09.6792172Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/DecoratedPdo.php
2021-03-07T09:27:09.6793359Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception.php
2021-03-07T09:27:09.6794633Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotBindValue.php
2021-03-07T09:27:09.6796028Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotDisconnect.php
2021-03-07T09:27:09.6797450Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php
2021-03-07T09:27:09.6798866Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/MissingParameter.php
2021-03-07T09:27:09.6800161Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdo.php
2021-03-07T09:27:09.6802012Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdoInterface.php
2021-03-07T09:27:09.6803488Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/AbstractParser.php
2021-03-07T09:27:09.6805134Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/MysqlParser.php
2021-03-07T09:27:09.6806770Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/NullParser.php
2021-03-07T09:27:09.6808350Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/ParserInterface.php
2021-03-07T09:27:09.6809848Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/PgsqlParser.php
2021-03-07T09:27:09.6811226Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqliteParser.php
2021-03-07T09:27:09.6812584Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqlsrvParser.php
2021-03-07T09:27:09.6814076Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/PdoInterface.php
2021-03-07T09:27:09.6815393Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/MemoryLogger.php
2021-03-07T09:27:09.6816690Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/Profiler.php
2021-03-07T09:27:09.6818069Z βοΈ File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/ProfilerInterface.php
2021-03-07T09:27:09.6819553Z βοΈ File content is the same, doing nothing: includes/vendor/autoload.php
2021-03-07T09:27:09.6820754Z βοΈ File content is the same, doing nothing: includes/vendor/build-script/yourls-build.sh
2021-03-07T09:27:09.6822167Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_classmap.php
2021-03-07T09:27:09.6823608Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_files.php
2021-03-07T09:27:09.6824841Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_namespaces.php
2021-03-07T09:27:09.6826034Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_psr4.php
2021-03-07T09:27:09.6827200Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_real.php
2021-03-07T09:27:09.6828944Z βοΈ File content is the same, doing nothing: includes/vendor/composer/autoload_static.php
2021-03-07T09:27:09.6830551Z ποΈ Delete: includes/vendor/composer/ca-bundle/LICENSE
2021-03-07T09:27:09.6831738Z βοΈ File content is the same, doing nothing: includes/vendor/composer/ca-bundle/phpstan.neon.dist
2021-03-07T09:27:09.6833065Z ποΈ Delete: includes/vendor/composer/ca-bundle/README.md
2021-03-07T09:27:09.6834222Z βοΈ File content is the same, doing nothing: includes/vendor/composer/ca-bundle/res/cacert.pem
2021-03-07T09:27:09.6835775Z βοΈ File content is the same, doing nothing: includes/vendor/composer/ca-bundle/src/CaBundle.php
2021-03-07T09:27:09.6837094Z βοΈ File content is the same, doing nothing: includes/vendor/composer/ClassLoader.php
2021-03-07T09:27:09.6838371Z βοΈ File content is the same, doing nothing: includes/vendor/composer/installed.json
2021-03-07T09:27:09.6839723Z βοΈ File content is the same, doing nothing: includes/vendor/composer/installed.php
2021-03-07T09:27:09.6841016Z βοΈ File content is the same, doing nothing: includes/vendor/composer/InstalledVersions.php
2021-03-07T09:27:09.6842306Z ποΈ Delete: includes/vendor/composer/LICENSE
2021-03-07T09:27:09.6843434Z βοΈ File content is the same, doing nothing: includes/vendor/composer/platform_check.php
2021-03-07T09:27:09.6844563Z ποΈ Delete: includes/vendor/geoip2/geoip2/README.md
2021-03-07T09:27:09.6845749Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Database/Reader.php
2021-03-07T09:27:09.6847660Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php
2021-03-07T09:27:09.6849560Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php
2021-03-07T09:27:09.6851495Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php
2021-03-07T09:27:09.6852978Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/HttpException.php
2021-03-07T09:27:09.6854885Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php
2021-03-07T09:27:09.6856891Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php
2021-03-07T09:27:09.6859430Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AbstractModel.php
2021-03-07T09:27:09.6860875Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AnonymousIp.php
2021-03-07T09:27:09.6862192Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Asn.php
2021-03-07T09:27:09.6863700Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/City.php
2021-03-07T09:27:09.6865544Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/ConnectionType.php
2021-03-07T09:27:09.6866883Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Country.php
2021-03-07T09:27:09.6868680Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Domain.php
2021-03-07T09:27:09.6870274Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Enterprise.php
2021-03-07T09:27:09.6871647Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Insights.php
2021-03-07T09:27:09.6872984Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Isp.php
2021-03-07T09:27:09.6874369Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/ProviderInterface.php
2021-03-07T09:27:09.6875927Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php
2021-03-07T09:27:09.6877453Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractRecord.php
2021-03-07T09:27:09.6878856Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/City.php
2021-03-07T09:27:09.6880252Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Continent.php
2021-03-07T09:27:09.6881653Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Country.php
2021-03-07T09:27:09.6883158Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Location.php
2021-03-07T09:27:09.6884457Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/MaxMind.php
2021-03-07T09:27:09.6885960Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Postal.php
2021-03-07T09:27:09.6887404Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php
2021-03-07T09:27:09.6889057Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Subdivision.php
2021-03-07T09:27:09.6890365Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Traits.php
2021-03-07T09:27:09.6891585Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Util.php
2021-03-07T09:27:09.6892867Z βοΈ File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/WebService/Client.php
2021-03-07T09:27:09.6894226Z βοΈ File content is the same, doing nothing: includes/vendor/jakeasmith/http_build_url/src/http_build_url.php
2021-03-07T09:27:09.6895378Z ποΈ Delete: includes/vendor/maxmind-db/reader/README.md
2021-03-07T09:27:09.6896559Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php
2021-03-07T09:27:09.6897959Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php
2021-03-07T09:27:09.6899621Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php
2021-03-07T09:27:09.6901268Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php
2021-03-07T09:27:09.6903158Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php
2021-03-07T09:27:09.6904686Z ποΈ Delete: includes/vendor/maxmind/web-service-common/README.md
2021-03-07T09:27:09.6906473Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php
2021-03-07T09:27:09.6908591Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/HttpException.php
2021-03-07T09:27:09.6910366Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php
2021-03-07T09:27:09.6912222Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php
2021-03-07T09:27:09.6914233Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php
2021-03-07T09:27:09.6916198Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php
2021-03-07T09:27:09.6918396Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php
2021-03-07T09:27:09.6920327Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php
2021-03-07T09:27:09.6921997Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Client.php
2021-03-07T09:27:09.6923722Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php
2021-03-07T09:27:09.6925300Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php
2021-03-07T09:27:09.6926916Z βοΈ File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php
2021-03-07T09:27:09.6928251Z ποΈ Delete: includes/vendor/ozh/bookmarkletgen/README.md
2021-03-07T09:27:09.6929556Z βοΈ File content is the same, doing nothing: includes/vendor/ozh/bookmarkletgen/src/Ozh/Bookmarkletgen/Bookmarkletgen.php
2021-03-07T09:27:09.6930759Z ποΈ Delete: includes/vendor/ozh/phpass/README.md
2021-03-07T09:27:09.6931895Z βοΈ File content is the same, doing nothing: includes/vendor/ozh/phpass/src/Ozh/Phpass/PasswordHash.php
2021-03-07T09:27:09.6932951Z ποΈ Delete: includes/vendor/pomo/pomo/README.md
2021-03-07T09:27:09.6933933Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/MO.php
2021-03-07T09:27:09.6935121Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Parser/PluralForms.php
2021-03-07T09:27:09.6936283Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/PO.php
2021-03-07T09:27:09.6937545Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedFileReader.php
2021-03-07T09:27:09.6939020Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedIntFileReader.php
2021-03-07T09:27:09.6940392Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/FileReader.php
2021-03-07T09:27:09.6941652Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/NOOPReader.php
2021-03-07T09:27:09.6943426Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/Reader.php
2021-03-07T09:27:09.6944688Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StreamInterface.php
2021-03-07T09:27:09.6945966Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StringReader.php
2021-03-07T09:27:09.6947326Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/EntryTranslations.php
2021-03-07T09:27:09.6948781Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/GettextTranslations.php
2021-03-07T09:27:09.6950352Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/NOOPTranslations.php
2021-03-07T09:27:09.6952053Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/Translations.php
2021-03-07T09:27:09.6953641Z βοΈ File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/TranslationsInterface.php
2021-03-07T09:27:09.6955299Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/AbstractLogger.php
2021-03-07T09:27:09.6957082Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/InvalidArgumentException.php
2021-03-07T09:27:09.6958736Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
2021-03-07T09:27:09.6960117Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareTrait.php
2021-03-07T09:27:09.6961439Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerInterface.php
2021-03-07T09:27:09.6962869Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerTrait.php
2021-03-07T09:27:09.6964074Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LogLevel.php
2021-03-07T09:27:09.6965263Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/NullLogger.php
2021-03-07T09:27:09.6966611Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/DummyTest.php
2021-03-07T09:27:09.6967910Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
2021-03-07T09:27:09.6969210Z βοΈ File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/TestLogger.php
2021-03-07T09:27:09.6970206Z ποΈ Delete: includes/vendor/psr/log/README.md
2021-03-07T09:27:09.6971229Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests.php
2021-03-07T09:27:09.6972495Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth.php
2021-03-07T09:27:09.6973768Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth/Basic.php
2021-03-07T09:27:09.6975041Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie.php
2021-03-07T09:27:09.6976330Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie/Jar.php
2021-03-07T09:27:09.6977975Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception.php
2021-03-07T09:27:09.6979385Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP.php
2021-03-07T09:27:09.6980726Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php
2021-03-07T09:27:09.6982087Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php
2021-03-07T09:27:09.6983973Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php
2021-03-07T09:27:09.6985307Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php
2021-03-07T09:27:09.6986796Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php
2021-03-07T09:27:09.6988101Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php
2021-03-07T09:27:09.6989408Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php
2021-03-07T09:27:09.6990700Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php
2021-03-07T09:27:09.6992116Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php
2021-03-07T09:27:09.6993665Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php
2021-03-07T09:27:09.6994987Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php
2021-03-07T09:27:09.6996695Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php
2021-03-07T09:27:09.6998684Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php
2021-03-07T09:27:09.7000222Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php
2021-03-07T09:27:09.7002147Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php
2021-03-07T09:27:09.7003723Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php
2021-03-07T09:27:09.7005383Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php
2021-03-07T09:27:09.7006911Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php
2021-03-07T09:27:09.7008379Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php
2021-03-07T09:27:09.7010020Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php
2021-03-07T09:27:09.7011682Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php
2021-03-07T09:27:09.7013152Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php
2021-03-07T09:27:09.7015934Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php
2021-03-07T09:27:09.7017477Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php
2021-03-07T09:27:09.7018979Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php
2021-03-07T09:27:09.7020449Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php
2021-03-07T09:27:09.7021936Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php
2021-03-07T09:27:09.7023653Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php
2021-03-07T09:27:09.7025133Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php
2021-03-07T09:27:09.7026633Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php
2021-03-07T09:27:09.7028293Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php
2021-03-07T09:27:09.7030324Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php
2021-03-07T09:27:09.7031900Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php
2021-03-07T09:27:09.7033812Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport.php
2021-03-07T09:27:09.7035372Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php
2021-03-07T09:27:09.7037073Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooker.php
2021-03-07T09:27:09.7038323Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooks.php
2021-03-07T09:27:09.7040010Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IDNAEncoder.php
2021-03-07T09:27:09.7041688Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IPv6.php
2021-03-07T09:27:09.7043331Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IRI.php
2021-03-07T09:27:09.7044877Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy.php
2021-03-07T09:27:09.7046939Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy/HTTP.php
2021-03-07T09:27:09.7048632Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response.php
2021-03-07T09:27:09.7049916Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response/Headers.php
2021-03-07T09:27:09.7051563Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Session.php
2021-03-07T09:27:09.7052968Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/SSL.php
2021-03-07T09:27:09.7054795Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport.php
2021-03-07T09:27:09.7056114Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cacert.pem
2021-03-07T09:27:09.7057416Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cURL.php
2021-03-07T09:27:09.7058749Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/fsockopen.php
2021-03-07T09:27:09.7060272Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php
2021-03-07T09:27:09.7061886Z βοΈ File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/FilteredIterator.php
2021-03-07T09:27:09.7063636Z ποΈ Delete: includes/vendor/rmccue/requests/README.md
2021-03-07T09:27:09.7064685Z ποΈ Delete: includes/vendor/spatie/array-to-xml/README.md
2021-03-07T09:27:09.7065753Z βοΈ File content is the same, doing nothing: includes/vendor/spatie/array-to-xml/src/ArrayToXml.php
2021-03-07T09:27:09.7066971Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap.php
2021-03-07T09:27:09.7068234Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap80.php
2021-03-07T09:27:09.7069425Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Idn.php
2021-03-07T09:27:09.7070592Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Info.php
2021-03-07T09:27:09.7071657Z ποΈ Delete: includes/vendor/symfony/polyfill-intl-idn/LICENSE
2021-03-07T09:27:09.7072748Z ποΈ Delete: includes/vendor/symfony/polyfill-intl-idn/README.md
2021-03-07T09:27:09.7074028Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php
2021-03-07T09:27:09.7075484Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php
2021-03-07T09:27:09.7077330Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php
2021-03-07T09:27:09.7078794Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php
2021-03-07T09:27:09.7080289Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php
2021-03-07T09:27:09.7081732Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php
2021-03-07T09:27:09.7083252Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php
2021-03-07T09:27:09.7084742Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php
2021-03-07T09:27:09.7086760Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php
2021-03-07T09:27:09.7088331Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
2021-03-07T09:27:09.7090249Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
2021-03-07T09:27:09.7091465Z ποΈ Delete: includes/vendor/symfony/polyfill-intl-normalizer/LICENSE
2021-03-07T09:27:09.7092876Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Normalizer.php
2021-03-07T09:27:09.7094141Z ποΈ Delete: includes/vendor/symfony/polyfill-intl-normalizer/README.md
2021-03-07T09:27:09.7095510Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php
2021-03-07T09:27:09.7097163Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php
2021-03-07T09:27:09.7098951Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php
2021-03-07T09:27:09.7101257Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php
2021-03-07T09:27:09.7103687Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php
2021-03-07T09:27:09.7105975Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/bootstrap.php
2021-03-07T09:27:09.7107093Z ποΈ Delete: includes/vendor/symfony/polyfill-mbstring/LICENSE
2021-03-07T09:27:09.7108201Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Mbstring.php
2021-03-07T09:27:09.7109305Z ποΈ Delete: includes/vendor/symfony/polyfill-mbstring/README.md
2021-03-07T09:27:09.7110518Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
2021-03-07T09:27:09.7111953Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
2021-03-07T09:27:09.7113414Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
2021-03-07T09:27:09.7114711Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/bootstrap.php
2021-03-07T09:27:09.7115767Z ποΈ Delete: includes/vendor/symfony/polyfill-php72/LICENSE
2021-03-07T09:27:09.7116801Z βοΈ File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/Php72.php
2021-03-07T09:27:09.7117984Z ποΈ Delete: includes/vendor/symfony/polyfill-php72/README.md
2021-03-07T09:27:09.7118865Z π File replace: includes/version.php
2021-03-07T09:27:09.7119669Z βοΈ File content is the same, doing nothing: js/clipboard.min.js
2021-03-07T09:27:09.7120509Z βοΈ File content is the same, doing nothing: js/common.js
2021-03-07T09:27:09.7121292Z βοΈ File content is the same, doing nothing: js/infos.js
2021-03-07T09:27:09.7122060Z βοΈ File content is the same, doing nothing: js/insert.js
2021-03-07T09:27:09.7122916Z βοΈ File content is the same, doing nothing: js/jquery-3.5.1.min.js
2021-03-07T09:27:09.7123922Z βοΈ File content is the same, doing nothing: js/jquery-3.tablesorter.min.js
2021-03-07T09:27:09.7125031Z βοΈ File content is the same, doing nothing: js/jquery.cal.js
2021-03-07T09:27:09.7126281Z βοΈ File content is the same, doing nothing: js/jquery.notifybar.js
2021-03-07T09:27:09.7127305Z βοΈ File content is the same, doing nothing: js/share.js
2021-03-07T09:27:09.7128270Z βοΈ File content is the same, doing nothing: js/tablesorte.js
2021-03-07T09:27:09.7129396Z ποΈ Delete: LICENSE
2021-03-07T09:27:09.7130185Z ποΈ Delete: README.md
2021-03-07T09:27:09.7130831Z ποΈ Delete: sample-robots.txt
2021-03-07T09:27:09.7131514Z ποΈ Delete: tests/.htaccess
2021-03-07T09:27:09.7132784Z βοΈ File content is the same, doing nothing: tests/bootstrap.php
2021-03-07T09:27:09.7134407Z βοΈ File content is the same, doing nothing: tests/data/auth/config-test-auth.php
2021-03-07T09:27:09.7135565Z βοΈ File content is the same, doing nothing: tests/data/config/yourls-tests-config-ci.php
2021-03-07T09:27:09.7137941Z βοΈ File content is the same, doing nothing: tests/data/config/yourls-tests-config-sample.php
2021-03-07T09:27:09.7139466Z βοΈ File content is the same, doing nothing: tests/data/formatting/big5.txt
2021-03-07T09:27:09.7141027Z βοΈ File content is the same, doing nothing: tests/data/formatting/utf-8.txt
2021-03-07T09:27:09.7142078Z βοΈ File content is the same, doing nothing: tests/data/htaccess/expected_empty.txt
2021-03-07T09:27:09.7144293Z βοΈ File content is the same, doing nothing: tests/data/htaccess/expected_fresh-YOURLS-content.txt
2021-03-07T09:27:09.7145447Z βοΈ File content is the same, doing nothing: tests/data/htaccess/expected_nofile.txt
2021-03-07T09:27:09.7146587Z βοΈ File content is the same, doing nothing: tests/data/htaccess/expected_old-YOURLS-content.txt
2021-03-07T09:27:09.7147765Z βοΈ File content is the same, doing nothing: tests/data/htaccess/expected_other-content.txt
2021-03-07T09:27:09.7148830Z βοΈ File content is the same, doing nothing: tests/data/htaccess/original_empty.txt
2021-03-07T09:27:09.7149954Z βοΈ File content is the same, doing nothing: tests/data/htaccess/original_fresh-YOURLS-content.txt
2021-03-07T09:27:09.7151580Z βοΈ File content is the same, doing nothing: tests/data/htaccess/original_old-YOURLS-content.txt
2021-03-07T09:27:09.7152956Z βοΈ File content is the same, doing nothing: tests/data/htaccess/original_other-content.txt
2021-03-07T09:27:09.7154338Z βοΈ File content is the same, doing nothing: tests/data/pages/examplepage.php
2021-03-07T09:27:09.7155582Z βοΈ File content is the same, doing nothing: tests/data/plugins/headers/header_incomplete.php
2021-03-07T09:27:09.7157052Z βοΈ File content is the same, doing nothing: tests/data/plugins/headers/header_incorrect.php
2021-03-07T09:27:09.7158329Z βοΈ File content is the same, doing nothing: tests/data/plugins/headers/header_missing.php
2021-03-07T09:27:09.7159476Z β Upload: tests/data/plugins/headers/header_nocomment.php
2021-03-07T09:27:09.7160958Z βοΈ File content is the same, doing nothing: tests/data/plugins/headers/header_phpdoc.php
2021-03-07T09:27:09.7162564Z βοΈ File content is the same, doing nothing: tests/data/plugins/headers/header_regular.php
2021-03-07T09:27:09.7163984Z βοΈ File content is the same, doing nothing: tests/data/plugins/test-plugin/plugin.php
2021-03-07T09:27:09.7165114Z βοΈ File content is the same, doing nothing: tests/data/pomo/fr_FR.mo
2021-03-07T09:27:09.7166438Z βοΈ File content is the same, doing nothing: tests/data/pomo/fr_FR.po
2021-03-07T09:27:09.7168192Z βοΈ File content is the same, doing nothing: tests/data/pomo/test-fr_FR.mo
2021-03-07T09:27:09.7169387Z βοΈ File content is the same, doing nothing: tests/data/pomo/test-fr_FR.po
2021-03-07T09:27:09.7171255Z βοΈ File content is the same, doing nothing: tests/includes/install.php
2021-03-07T09:27:09.7172555Z βοΈ File content is the same, doing nothing: tests/includes/phpunit6-compat.php
2021-03-07T09:27:09.7173722Z βοΈ File content is the same, doing nothing: tests/includes/utils.php
2021-03-07T09:27:09.7174814Z ποΈ Delete: tests/README.md
2021-03-07T09:27:09.7175844Z βοΈ File content is the same, doing nothing: tests/tests/api/funcs.php
2021-03-07T09:27:09.7177490Z βοΈ File content is the same, doing nothing: tests/tests/api/output.php
2021-03-07T09:27:09.7178606Z βοΈ File content is the same, doing nothing: tests/tests/auth/auth.php
2021-03-07T09:27:09.7180101Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_API.php
2021-03-07T09:27:09.7181272Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_base.php
2021-03-07T09:27:09.7182421Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_cookie.php
2021-03-07T09:27:09.7183861Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_normal.php
2021-03-07T09:27:09.7185716Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_secure_time.php
2021-03-07T09:27:09.7187115Z βοΈ File content is the same, doing nothing: tests/tests/auth/login_secure.php
2021-03-07T09:27:09.7188221Z βοΈ File content is the same, doing nothing: tests/tests/auth/logout.php
2021-03-07T09:27:09.7189284Z βοΈ File content is the same, doing nothing: tests/tests/auth/nonces.php
2021-03-07T09:27:09.7190401Z βοΈ File content is the same, doing nothing: tests/tests/auth/signatures.php
2021-03-07T09:27:09.7191746Z βοΈ File content is the same, doing nothing: tests/tests/db/db.php
2021-03-07T09:27:09.7192724Z βοΈ File content is the same, doing nothing: tests/tests/db/misc.php
2021-03-07T09:27:09.7193729Z βοΈ File content is the same, doing nothing: tests/tests/format/escaping.php
2021-03-07T09:27:09.7195268Z βοΈ File content is the same, doing nothing: tests/tests/format/general.php
2021-03-07T09:27:09.7196377Z βοΈ File content is the same, doing nothing: tests/tests/format/kses.php
2021-03-07T09:27:09.7197641Z βοΈ File content is the same, doing nothing: tests/tests/format/sanitizing.php
2021-03-07T09:27:09.7198897Z βοΈ File content is the same, doing nothing: tests/tests/format/timedates.php
2021-03-07T09:27:09.7199932Z βοΈ File content is the same, doing nothing: tests/tests/format/urls.php
2021-03-07T09:27:09.7201152Z βοΈ File content is the same, doing nothing: tests/tests/geoip/geoip.php
2021-03-07T09:27:09.7202267Z βοΈ File content is the same, doing nothing: tests/tests/http/api-check.php
2021-03-07T09:27:09.7203399Z βοΈ File content is the same, doing nothing: tests/tests/http/general.php
2021-03-07T09:27:09.7204508Z βοΈ File content is the same, doing nothing: tests/tests/http/headers.php
2021-03-07T09:27:09.7205595Z βοΈ File content is the same, doing nothing: tests/tests/http/misc.php
2021-03-07T09:27:09.7207293Z βοΈ File content is the same, doing nothing: tests/tests/http/proxy.php
2021-03-07T09:27:09.7208320Z βοΈ File content is the same, doing nothing: tests/tests/http/requests.php
2021-03-07T09:27:09.7209359Z βοΈ File content is the same, doing nothing: tests/tests/install/htaccess.php
2021-03-07T09:27:09.7210416Z βοΈ File content is the same, doing nothing: tests/tests/install/install.php
2021-03-07T09:27:09.7212022Z βοΈ File content is the same, doing nothing: tests/tests/install/version.php
2021-03-07T09:27:09.7213064Z βοΈ File content is the same, doing nothing: tests/tests/l10n/domain.php
2021-03-07T09:27:09.7214102Z βοΈ File content is the same, doing nothing: tests/tests/l10n/formats.php
2021-03-07T09:27:09.7215155Z βοΈ File content is the same, doing nothing: tests/tests/l10n/general.php
2021-03-07T09:27:09.7216378Z βοΈ File content is the same, doing nothing: tests/tests/l10n/translations.php
2021-03-07T09:27:09.7217909Z βοΈ File content is the same, doing nothing: tests/tests/links/yourls_links.php
2021-03-07T09:27:09.7219144Z βοΈ File content is the same, doing nothing: tests/tests/options.php
2021-03-07T09:27:09.7220176Z βοΈ File content is the same, doing nothing: tests/tests/pages/pages.php
2021-03-07T09:27:09.7221272Z βοΈ File content is the same, doing nothing: tests/tests/plugins/actions.php
2021-03-07T09:27:09.7222512Z βοΈ File content is the same, doing nothing: tests/tests/plugins/files.php
2021-03-07T09:27:09.7223973Z βοΈ File content is the same, doing nothing: tests/tests/plugins/filters.php
2021-03-07T09:27:09.7224955Z π File replace: tests/tests/plugins/headers.php
2021-03-07T09:27:09.7225828Z β Upload: tests/tests/plugins/helpers.php
2021-03-07T09:27:09.7226672Z ποΈ Delete: tests/tests/plugins/misc.php
2021-03-07T09:27:09.7227966Z β Upload: tests/tests/plugins/pages.php
2021-03-07T09:27:09.7229306Z βοΈ File content is the same, doing nothing: tests/tests/shorturl/shorturl.php
2021-03-07T09:27:09.7230341Z βοΈ File content is the same, doing nothing: tests/tests/stats/misc.php
2021-03-07T09:27:09.7231344Z βοΈ File content is the same, doing nothing: tests/tests/themes/themes.php
2021-03-07T09:27:09.7232357Z ποΈ Delete: tests/tests/TODO.md
2021-03-07T09:27:09.7233328Z βοΈ File content is the same, doing nothing: tests/tests/utilities/get_request.php
2021-03-07T09:27:09.7234468Z βοΈ File content is the same, doing nothing: tests/tests/utilities/next_decimal.php
2021-03-07T09:27:09.7235456Z ποΈ Delete: user/config-sample.php
2021-03-07T09:27:09.7236368Z βοΈ File content is the same, doing nothing: user/index.html
2021-03-07T09:27:09.7237150Z π Delete: user/languages
2021-03-07T09:27:09.7238039Z βοΈ File content is the same, doing nothing: user/languages/index.html
2021-03-07T09:27:09.7238859Z π Delete: user/pages
2021-03-07T09:27:09.7239775Z βοΈ File content is the same, doing nothing: user/pages/examplepage.php
2021-03-07T09:27:09.7240842Z βοΈ File content is the same, doing nothing: user/pages/index.html
2021-03-07T09:27:09.7241657Z π Delete: user/plugins
2021-03-07T09:27:09.7242620Z βοΈ File content is the same, doing nothing: user/plugins/hyphens-in-urls/plugin.php
2021-03-07T09:27:09.7243864Z ποΈ Delete: user/plugins/hyphens-in-urls/README.md
2021-03-07T09:27:09.7244838Z βοΈ File content is the same, doing nothing: user/plugins/index.html
2021-03-07T09:27:09.7245887Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_ants.png
2021-03-07T09:27:09.7246970Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_boobs.png
2021-03-07T09:27:09.7248091Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_circles.png
2021-03-07T09:27:09.7249210Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_cross.png
2021-03-07T09:27:09.7250694Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_diag.png
2021-03-07T09:27:09.7251895Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy_bits.png
2021-03-07T09:27:09.7253093Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy.png
2021-03-07T09:27:09.7254245Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_life.png
2021-03-07T09:27:09.7255581Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/img/bg_yourls.png
2021-03-07T09:27:09.7256726Z βοΈ File content is the same, doing nothing: user/plugins/random-bg/plugin.php
2021-03-07T09:27:09.7257710Z ποΈ Delete: user/plugins/random-bg/README.md
2021-03-07T09:27:09.7258768Z βοΈ File content is the same, doing nothing: user/plugins/random-shorturls/plugin.php
2021-03-07T09:27:09.7259868Z ποΈ Delete: user/plugins/random-shorturls/README.md
2021-03-07T09:27:09.7260960Z βοΈ File content is the same, doing nothing: user/plugins/sample-page/plugin.php
2021-03-07T09:27:09.7262101Z ποΈ Delete: user/plugins/sample-page/README.md
2021-03-07T09:27:09.7263559Z βοΈ File content is the same, doing nothing: user/plugins/sample-plugin/plugin.php
2021-03-07T09:27:09.7264591Z ποΈ Delete: user/plugins/sample-plugin/README.md
2021-03-07T09:27:09.7265642Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/css/toolbar.css
2021-03-07T09:27:09.7266868Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button_red.gif
2021-03-07T09:27:09.7268226Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button.gif
2021-03-07T09:27:09.7269417Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/img/favicon.gif
2021-03-07T09:27:09.7270618Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/img/toolbar_bg.png
2021-03-07T09:27:09.7271800Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/js/toolbar.js
2021-03-07T09:27:09.7273154Z βοΈ File content is the same, doing nothing: user/plugins/sample-toolbar/plugin.php
2021-03-07T09:27:09.7274192Z ποΈ Delete: user/plugins/sample-toolbar/README.md
2021-03-07T09:27:09.7275124Z βοΈ File content is the same, doing nothing: yourls-api.php
2021-03-07T09:27:09.7276057Z βοΈ File content is the same, doing nothing: yourls-go.php
2021-03-07T09:27:09.7276984Z βοΈ File content is the same, doing nothing: yourls-infos.php
2021-03-07T09:27:09.7278007Z βοΈ File content is the same, doing nothing: yourls-loader.php
2021-03-07T09:27:09.7278933Z ----------------------------------------------------------------
2021-03-07T09:27:09.7279583Z Making changes to 48 files to sync server state
2021-03-07T09:27:09.7280437Z Uploading: 6.75 kB -- Deleting: 88.6 kB -- Replacing: 70.7 kB
2021-03-07T09:27:09.7281277Z ----------------------------------------------------------------
2021-03-07T09:27:09.7282034Z uploading "tests/data/plugins/headers/header_nocomment.php"
2021-03-07T09:27:09.9344467Z Error 553 FileNameNotAllowed, you don't have access to upload that file
2021-03-07T09:27:09.9368363Z FTPError: 553 Can't open that file: No such file or directory
2021-03-07T09:27:09.9369673Z at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-07T09:27:09.9371633Z at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-07T09:27:09.9372899Z at Socket.emit (events.js:210:5)
2021-03-07T09:27:09.9373468Z at addChunk (_stream_readable.js:309:12)
2021-03-07T09:27:09.9375131Z at readableAddChunk (_stream_readable.js:286:13)
2021-03-07T09:27:09.9376266Z at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-07T09:27:09.9377223Z at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-07T09:27:09.9377943Z name: 'FTPError',
2021-03-07T09:27:09.9378332Z code: 553
2021-03-07T09:27:09.9378623Z }
2021-03-07T09:27:09.9380308Z FTPError: 553 Can't open that file: No such file or directory
2021-03-07T09:27:09.9381518Z at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-07T09:27:09.9383794Z at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-07T09:27:09.9384603Z at Socket.emit (events.js:210:5)
2021-03-07T09:27:09.9385311Z at addChunk (_stream_readable.js:309:12)
2021-03-07T09:27:09.9386081Z at readableAddChunk (_stream_readable.js:286:13)
2021-03-07T09:27:09.9387000Z at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-07T09:27:09.9387789Z at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-07T09:27:09.9388526Z name: 'FTPError',
2021-03-07T09:27:09.9388899Z code: 553
2021-03-07T09:27:09.9389226Z }
2021-03-07T09:27:09.9390006Z ----------------------------------------------------------------
2021-03-07T09:27:09.9390905Z Time spent hashing: 515 milliseconds
2021-03-07T09:27:09.9391705Z Time spent connecting to server: 936 milliseconds
2021-03-07T09:27:09.9392341Z Time spent deploying: 301 milliseconds (257 kB/second)
2021-03-07T09:27:09.9393063Z - changing dirs: 197 milliseconds
2021-03-07T09:27:09.9394268Z - logging: 18 milliseconds
2021-03-07T09:27:09.9394926Z ----------------------------------------------------------------
2021-03-07T09:27:09.9395550Z Total time: 2.7 seconds
2021-03-07T09:27:09.9396155Z ----------------------------------------------------------------
2021-03-07T09:27:09.9524614Z Post job cleanup.
2021-03-07T09:27:10.0624371Z [command]/usr/bin/git version
2021-03-07T09:27:10.0686951Z git version 2.30.1
2021-03-07T09:27:10.0720286Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-07T09:27:10.0753772Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-07T09:27:10.1008113Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-07T09:27:10.1035929Z http.https://github.com/.extraheader
2021-03-07T09:27:10.1045231Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-03-07T09:27:10.1081760Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-07T09:27:10.1347847Z Cleaning up orphan processes
Example for two files that should have been changed
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:11 (1 by maintainers)
Top Results From Across the Web
Git status shows files as changed even though contents are ...
I have resolved this problem using following steps. Remove every file from Git's index. git rm --cached -r . Rewrite the Git index...
Read more >Log files and resolving upgrade errors - Windows Deployment
Learn how to interpret and analyze the log files that are generated during the Windows 10 upgrade process.
Read more >Troubleshooting CloudFormation - AWS Documentation
These logs capture processes and command outputs while AWS CloudFormation is ... a stack update, CloudFormation has removed a resource from a stack...
Read more >Commit the Configuration | Junos OS - Juniper Networks
On the device, the current configuration file and the first three rollback ... When you commit the configuration, the CLI commits only your...
Read more >Status codes in HTTP - W3C
This is a historic document and is not accurate anymore. ... this indicates success, but the textual part of the response line indicates...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Would be good if there was a work-around for now to βAlways upload filesβ. We have uploaded CMS assets so I cannot use βdangerous-clean-slateβ because I think that will remove them.
Perhaps some options of how files are compared also. Like modification date and/or a deeper comparison of file contents.
Got the same problem, for some reason it only does it with image files