milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Optimization

Details
Written by: Stanko Milosev
Category: Windows 7
Published: 30 January 2010
Last Updated: 30 November -0001
Hits: 5672

1) Go to Start, type in SystemPropertiesPerformance and hit Enter
2) Go to the Visual Effects tab

Then, check or uncheck thigs you like...

UAC and IIS

Details
Written by: Stanko Milosev
Category: Windows 7
Published: 29 January 2010
Last Updated: 29 January 2010
Hits: 6003

User Account Control setting you will find in: Control Panel > System Security > Action Center > Change User Account Control Settings

IIS 7 log files are on my computer are in: C:\Inetpub\logs\LogFiles

To get IIS manager, you can write in Start -> Run -> inetmgr.exe, or Start -> Control Panel -> System Security -> Administrative Tools -> Internet Information Services

Tips & tricks

Details
Written by: Stanko Milosev
Category: Windows 7
Published: 10 November 2009
Last Updated: 30 November -0001
Hits: 5714

You can follow my links at http://delicious.com/stanko75/windows7 (or via RSS).

This tip I took from Tim Anderson tweet:

did you know that pressing Shift-F10 at Win 7 install screen gets you a command prompt for minwin?

Git for ftp

Details
Written by: Stanko Milosev
Category: GIT
Published: 15 February 2014
Last Updated: 24 April 2014
Hits: 6630

To write this article, I was using this web page. As as it is written there, first download msysgit, I downloaded msysGit-fullinstall-1.8.5.2-preview20131230.exe, after unzipping it start msys.bat if it doesn start automatically, and write following lines, one by one:

cd ~
git clone https://github.com/git-ftp/git-ftp git-ftp.git
cd git-ftp.git && chmod +x git-ftp
cp ~/git-ftp.git/git-ftp /bin/git-ftp

Now you can close window, and execute git-cmd.bat.

We have to set up our ftp. First go to folder which you want to synchronize, for example C:\gitTest\First, then set up ftp user and pass. For me it was something like this:

git config git-ftp.user ftpUser
git config git-ftp.url www.milosev.com/gittest
git config git-ftp.password ftpPass

Initialize:

git ftp init

Now we can push:

git ftp push

And enjoy :)

---

if you are receiving error like:

error: could not lock config file .git/config: No such file or directory

Then do something like

mkdir .git
git config --global user.email "This email address is being protected from spambots. You need JavaScript enabled to view it."

and error message is gone. Taken from here

---

Also, it seems that before git ftp init we have to execute git init command

---

and if you are receiving error like:

fatal: bad default revision 'HEAD'

Then it seems that first you have to commit to your local git repository, something like I already described here.

---

To download to my local machine, first I had to copy my source with simple ftp client, then to repeat all previous steps to have git local repository... I couldn't find another way...

Also, when I already have repositories, after getting the source with ftp client then when I execute:

git ftp catchup

I will keep my history...

---

It seems that something like

git pull ftp://userName:This email address is being protected from spambots. You need JavaScript enabled to view it./myModule

should also work, except in my case...

---

Finally, this is my procedure how I am doing git for ftp:

git add . --all
git commit -m "Commit locally"
git ftp push

I don't understand why I have to execute "git add . --all" but without that my code will not be added to the git.

  1. Playing with Git
  2. Setting the working directory for powershell
  3. Use parameter in PowerShell script
  4. Add new site in IIS 8.5

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 109 of 168

  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113